-
Notifications
You must be signed in to change notification settings - Fork 9
/
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
{
"scripts": {
"start": "concurrently \"node server/server.js\" \"python controller/controller.py\"",
"config": "gulp config",
"build": "cross-env NODE_ENV=production gulp build",
"key": "python keygen.py"
},
"private": true,
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.4.0",
"cross-env": "^5.0.1",
"eslint": "^4.0.0",
"eslint-import-resolver-babel-root-import": "0.0.2",
"eslint-plugin-import": "^2.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-file-cache": "0.0.1",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.3",
"gutil": "^1.6.4",
"webpack": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"shortid": "^2.2.8",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3"
}
}