-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (38 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
42
43
{
"name": "nodejs-battleship",
"version": "1.0.0",
"description": "",
"author": "ant0x64",
"license": "MIT",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"start": "tsx src/server",
"start:prod": "npm run build && node dist/server.min",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && webpack --mode=production"
},
"dependencies": {
"ws": "^8.16.0",
"dotenv": "^16.4.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.11.16",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"@types/ws": "8.5.10",
"prettier": "^3.2.5",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"node-loader": "^2.0.0"
}
}