-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.07 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": "dot-game",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"start": "NODE_OPTIONS=--openssl-legacy-provider npm run webpack && node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=dot-game:* npm run devstart",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"format": "prettier --write '**/*.js'"
},
"dependencies": {
"chart.js": "^3.5.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-handlebars": "^5.3.3",
"express-session": "^1.17.2",
"handlebars": "^4.3.5",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"lodash": "^4.17.21",
"morgan": "~1.9.1",
"socket.io": "^4.1.3",
"socket.io-client": "^4.2.0",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.5.0",
"uuid": "^8.3.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"devDependencies": {
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"prettier": "^3.0.0",
"typescript": "^5.2.2"
}
}