-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "coloo-backend",
"version": "0.1.0",
"description": "Server-Backend for coloo",
"license": "Apache-2.0",
"dependencies": {
"babel-polyfill": "^6.3.14",
"chai": "^3.5.0",
"co": ">=4.6.0",
"dateformat": "^1.0.12",
"dotenv": "^2.0.0",
"es6-defer": ">=1.0.1",
"mongodb": ">=2.1",
"node-gcm": "^0.13.0",
"promise": "^7.1.1",
"ws": ">=0.8.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^4.6.3",
"gulp": ">=3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "^2.6.0",
"gulp-exec": ">=2.1.2",
"gulp-exit": "0.0.2",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"mocha": "^2.3.4"
},
"scripts": {
"build": "mkdir -p dist && node node_modules/gulp/bin/gulp.js compile",
"start": "node dist/server.js",
"deploy": "npm run build && npm run start",
"testing": "node node_modules/gulp/bin/gulp.js test-all"
}
}