forked from np25071984/battleships
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 828 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
{
"name": "battleships",
"version": "0.8.3",
"description": "Battleships game",
"dependencies": {
"@floating-ui/dom": "^1.6.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.4",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.0",
"tsx": "^4.6.2",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "rimraf ./build && tsc && node_modules/.bin/webpack",
"start": "npm run build && node build/server/server.js",
"test": "node --import tsx --test ./test/RandomizerTest.ts ./test/BotTest.ts ./test/ShipTest.ts"
}
}