-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "project-test",
"version": "0.0.0",
"type": "module",
"engines": {
"node": "16.14.1"
},
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "node --loader ts-node/esm --watch index.ts",
"test": "vitest",
"build": "npm --prefix app-client run build && tsc",
"deploy": "npm --prefix app-client ci && npm ci && npm run build",
"setup": "npm --prefix app-client i && npm i"
},
"devDependencies": {
"@colyseus/command": "^0.2.1",
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.15",
"@types/sat": "^0.0.31",
"@types/supertest": "^2.0.12",
"prettier": "^2.8.3",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.25.8"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"colyseus": "^0.14.24",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"mongodb": "4.13",
"sat": "^0.9.0"
}
}