-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "game4d",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc",
"tsnd": "tsnd --respawn src/index.ts",
"run": "nodemon --watch dist/*.js dist/index.js",
"play": "http-server -p 9999 ./public/game4d-client -o http://127.0.0.1:9999/index.html"
},
"nodemonConfig": {
"ignore": [
"dist/data/*"
]
},
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"express": "^4.15.3",
"http-server": "^0.11.1",
"node-gameloop": "^0.1.4",
"nodemon": "1.11.0",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@types/mocha": "2.2.41",
"@types/node": "^7.0.22",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"supertest": "3.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"tsc": "1.20150623.0",
"typescript": "2.3.3",
"typescript-eslint-parser": "3.0.0"
}
}