-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1 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
{
"name": "battleships",
"version": "1.0.0",
"description": "Boom! You sunk my battleship",
"main": "index.js",
"license": "WTFPL",
"scripts": {
"build:live": "nodemon --watch 'src/' -e ts --exec node --inspect=0.0.0.0:9220 -r ts-node/register src/index.ts",
"build:windows": "nodemon -L 'src/**/*.ts' --exec 'node --inspect=0.0.0.0:9220 -r ts-node/register src/index.ts'",
"typeorm-ts": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"typeorm": "./node_modules/typeorm/cli.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"hashids": "^2.0.1",
"pg": "^7.12.1",
"pug": "^2.0.4",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.20",
"ws": "^7.2.0"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.0.5",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.1",
"@types/ws": "^6.0.3",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}