-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.49 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": "hgouveia/html5multiplayer",
"version": "1.0.0",
"description": "A simple multiplayer game using HTML5 Canvas in conjuction with nodejs",
"main": "build/server/index.js",
"scripts": {
"start": "npm run server:start",
"build": "npm run server:build && npm run client:build",
"server:start": "node build/server/index.js",
"server:start:dev": "npx cross-env DEBUG=ts-mp:* npx nodemon",
"server:build": "npx tsc && npm run server:build:cp:tpl",
"server:build:cp:tpl": "cp -R ./src/server/dashboard/views ./build/server/dashboard",
"client:build": "node_modules\\.bin\\webpack --config ./src/client/webpack.config.js",
"client:watch": "node_modules\\.bin\\webpack --config ./src/client/webpack.config.js -w",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"test": "npm run lint"
},
"author": "Jose De Gouveia",
"engines": {
"node": "10.x"
},
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/express": "^4.17.0",
"@types/node": "^12.6.8",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"cross-env": "^6.0.3",
"nodemon": "^1.19.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"debug": "^4.1.1",
"ejs": "^2.6.2",
"express": "^4.17.1",
"socket.io": "^2.2.0"
}
}