-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
38 lines (38 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
{
"private": true,
"scripts": {
"server": "node node/server.js",
"start": "webpack-dev-server --host 0.0.0.0 --port 9001 --hot",
"build-win": "set NODE_ENV=production && webpack -p --output-path=./public/control-panel/js/ --config=webpack.production.js",
"build": "NODE_ENV=production webpack -p --output-path=./public/control-panel/js/ --config=webpack.production.js"
},
"devDependencies": {
"axios": "^0.7.0",
"blueimp-md5": "^1.1.1",
"express": "^4.13.3",
"glob": "^5.0.15",
"gulp": "^3.8.8",
"gulp-concat": "^2.6.0",
"gulp-less": "^3.0.5",
"gulp-livereload": "^3.8.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^2.10.0",
"gulp-watch": "^4.3.5",
"jsonfile": "^2.2.3",
"nodemon": "^1.8.0",
"postal": "^1.0.7",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"react-mixin": "^3.0.0",
"react-notification-system": "^0.2.5",
"socket.io": "^1.3.7",
"ts-loader": "^0.5.6",
"typescript": "1.6.2",
"underscore": "^1.8.3",
"webpack": "^1.12.2"
},
"dependencies": {
"react-dropzone": "^3.0.0"
}
}