-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 858 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
32
33
34
35
{
"name": "snake-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "12.x"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"postinstall": "yarn build",
"dev": "nodemon src/server.ts",
"start": "node dist/server.js"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"ws": "^7.3.0"
}
}