forked from thr0wn/lancegame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
48
49
{
"name": "lance-game",
"version": "2.0.0",
"engines": {
"node": "6.11.1"
},
"description": "An HTML5 multiplayer game based on Lance",
"main": "main.js",
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-es2015": "^6.24.1",
"express": "^4.14.0",
"lance-gg": "^2.0.5",
"query-string": "^4.2.3",
"socket.io": "^1.4.8",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babelify": "^7.3.0",
"eslint": "^3.16.1",
"eslint-config-google": "^0.7.1",
"pixi.js": "^4.7.3"
},
"scripts": {
"start": "babel-node main.js --presets es2015",
"start-debug": "babel-node main.js --inspect --debug-brk --presets es2015",
"nodemon": "nodemon main.js --exec babel-node --presets es2015",
"postinstall": "webpack --display-error-details",
"build": "webpack",
"dev": "webpack --watch",
"stats": "webpack --env production --profile --json > stats.json"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"game",
"lance",
"lance-gg",
"multiplayer",
"websockets"
],
"author": "Jane Doe",
"license": "Apache-2.0"
}