-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 917 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
{
"name": "toplist",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "cd client && npm ci --legacy-peer-deps && npm run build",
"start": "set \"NODE_ENV=production\" && ts-node --transpile-only bin/www.ts",
"dev": "set \"NODE_ENV=development\" && nodemon",
"start:local": "concurrently --kill-others \"npm run start:local:client\" \"npm run start:local:server\"",
"start:local:client": "cd client && npm run start",
"start:local:server": "npm run dev"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "^3.1.8",
"express": "~4.16.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"socket.io": "^4.5.2"
},
"devDependencies": {
"concurrently": "^7.6.0",
"@types/node": "^18.8.5",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}