-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "gladius",
"version": "0.0.1",
"description": "A gladiator game",
"main": "build/index.js",
"directories": {
"doc": "doc"
},
"dependencies": {
"eslint": "^0.23.0",
"express": "^4.12.4",
"socket.io": "^1.3.5",
"babel": "^5.5.8"
},
"devDependencies": {
"babel-eslint": "^4.1.7",
"babel-loader": "^5.3.2",
"escope": "<=3.3.0",
"css-loader": "^0.15.5",
"cssnext-loader": "^1.0.1",
"eslint-loader": "^0.14.2",
"file-loader": "^0.8.4",
"json-loader": "^0.5.2",
"morgan": "^1.6.1",
"socket.io-client": "^1.3.5",
"style-loader": "^0.12.3",
"webpack": "^1.10.1"
},
"repository": {
"type": "git",
"url": "git@gitlab.garbure.info:lowfriction/gladius.git"
},
"scripts": {
"build-server": "webpack --config webpack.server.config.js",
"build-client": "webpack --config webpack.client.config.js",
"watch-server": "webpack --watch --config webpack.server.config.js",
"watch-client": "webpack --watch --config webpack.client.config.js",
"start": "babel-node build/main.js"
},
"author": "François Vaux, Laurent Zvara, Patrice Blin",
"license": "MIT"
}