-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 722 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 722 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
{
"name": "imposter-game-server",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/server.js",
"build": "node dist/server.js",
"dev": "npx tsc && nodemon dist/server.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.19.2",
"node-appwrite": "^21.1.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.8",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/node": "^25.0.3",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}