-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 874 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 874 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
32
33
{
"name": "anothergame",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"copy-codemirror": "node scripts/copy-codemirror.js",
"postinstall": "npm run copy-codemirror",
"start": "npm run copy-codemirror && node server/index.js",
"dev": "npm run copy-codemirror && nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.11.0",
"codemirror": "^5.65.16",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.2",
"matter-js": "^0.20.0",
"rate-limiter-flexible": "^8.1.0",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}