forked from echo-lab/live-coding-lecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 738 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "vite-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon src/server/main.js -w src/server",
"start": "NODE_ENV=production node src/server/main.js",
"build": "vite build"
},
"devDependencies": {
"nodemon": "^3.0.1",
"prompt-sync": "^4.2.0",
"vite": "^8.0.0"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.6",
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"lz-string": "^1.5.0",
"openai": "^6.36.0",
"pyodide": "^0.26.1",
"quill": "^2.0.2",
"sequelize": "^6.37.3",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sqlite3": "^5.1.7",
"vite-express": "*"
}
}