forked from alexander-schranz/react-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"private": true,
"name": "react-app",
"version": "0.1.0",
"description": "Remote Control",
"main": "app.js",
"scripts": {
"build-scss": "compass compile",
"build": "webpack --config webpack.prod.config.js",
"build-dev": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"watch-scss": "nodemon -e scss -w public/app --exec \"npm run build-scss\"",
"build-all": "npm run build && npm run build-scss"
},
"author": "Alexander Schranz",
"dependencies": {
"alt": "^0.18.1",
"axios": "^0.8.1",
"flux": "^2.1.1",
"intl": "^1.0.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-history": "^1.0.0",
"react-intl": "^2.0.0-beta-2",
"react-router": "^1.0.3"
},
"devDependencies": {
"babel-core": "^5.8.21",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.20",
"clean-webpack-plugin": "^0.1.3",
"nodemon": "^1.4.1",
"react-hot-loader": "^1.2.8",
"react-proxy-loader": "^0.3.4",
"webpack": "^1.10.5"
}
}