-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
50
{
"engines": {
"node": "5.12.0"
},
"name": "swarm-control-redux",
"version": "1.0.0",
"description": "This is the Node rewrite of swarmcontrol.net",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"lint:games": "gulp lint:games",
"build": "gulp default",
"build-no-lint": "gulp build-no-lint",
"clean": "gulp clean",
"start": "node server/server.js",
"postinstall": "npm run-script build"
},
"repository": {
"type": "git",
"url": "https://github.com/RoboticSwarmControl/SwarmControlRedux.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RoboticSwarmControl/SwarmControlRedux/issues"
},
"homepage": "https://github.com/RoboticSwarmControl/SwarmControlRedux",
"dependencies": {
"bluebird": "^3.4.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"express": "^4.13.3",
"fast-csv": "^2.0.0",
"pg-promise": "^4.6.2"
},
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-cache": "^0.4.1",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^2.0.0",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.1.1",
"jshint": "^2.8.0",
"node-sass": "^3.4.2"
}
}