-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 KB
/
package.json
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
34
35
36
37
38
39
40
41
{
"name": "vorpal-galaxy-battle-server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "set NODE_ENV=development&& npx nodemon",
"build": "rimraf ./build && tsc",
"build & run": "npm run build && node build/index",
"test": "jest"
},
"keywords": [],
"author": "Monax",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.4",
"@types/pg": "^8.11.0",
"@types/three": "^0.160.0",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"socket.io": "^4.7.2",
"three": "^0.160.0",
"web3": "^4.4.0"
}
}