-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
47 lines (47 loc) · 1.11 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
44
45
46
47
{
"name": "slither",
"version": "1.0.0",
"description": "slither game",
"main": "",
"scripts": {
"start": "NODE_ENV=production node -r 'ts-node/register' ./server/index.ts",
"dev": "node -r 'ts-node/register' ./server/dev.ts",
"build": "parcel ./web/index.html --open",
"release": "parcel build ./web/index.html",
"upgrade": "yarn upgrade-interactive"
},
"keywords": [
"game",
"slither",
"typescript"
],
"alias": {
"~": "./"
},
"dependencies": {
"@types/chokidar": "^1.7.5",
"@types/es6-shim": "^0.31.33",
"@types/ip": "^0.0.31",
"@types/node": "^10.5.7",
"@types/stats.js": "^0.17.0",
"@types/ws": "^3.2.0",
"buffer": "^5.0.8",
"chokidar": "^2.0.4",
"concurrently": "^3.6.1",
"eventemitter3": "^2.0.2",
"ip": "^1.1.5",
"ts-node": "^7.0.0",
"typescript": "^2.2.2",
"ws": "^3.3.2"
},
"author": "wanghx",
"license": "MIT",
"devDependencies": {
"es6-shim": "^0.35.1",
"nodemon": "^1.18.3",
"opn": "^5.1.0",
"parcel-bundler": "^1.9.3",
"parcel-plugin-typescript": "^1.0.0",
"tslint": "^5.8.0"
}
}