-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.81 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "stargate",
"version": "0.5.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "node install.js",
"start": "npm run build:js && node app.js",
"server": "node app.js",
"server-dev": "nodemon --ignore db/ --ignore web/assets/ app.js",
"start-dev": "npm-run-all --parallel server-dev watch:js",
"build:js": "webpack --optimize-minimize --config",
"watch:js": "webpack -w --devtool source-map --config",
"test": "NODE_ENV=test mocha test/test -R spec --recursive",
"publish": "NODE_ENV=test node ./publish.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel": "^4.7.16",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"devtool": "^2.3.0",
"ejs": "^2.5.2",
"express": "^4.12.3",
"express-session": "^1.14.0",
"node-gyp": "^3.4.0",
"socket.io": "^1.4.8",
"usage": "^0.7.1"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"immutability-helper": "^2.0.0",
"imports-loader": "^0.6.5",
"jsx-loader": "^0.13.2",
"material-ui": "^0.16.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"npm-run-all": "^3.1.1",
"react": "^15.3.2",
"react-addons-update": "^15.3.0",
"react-dom": "^15.2.0",
"react-router": "^4.0.0-alpha.5",
"react-tap-event-plugin": "^1.0.0",
"sass-loader": "^4.0.0",
"sassify": "^1.0.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"supertest": "^2.0.1",
"uglify-js": "^2.7.0",
"watchify": "^3.7.0",
"webpack": "^1.13.1"
},
"jshintConfig": {
"esversion": 6
}
}