-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "mockup-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "webpack --config webpack.client.config.js",
"build": "npm run client",
"watchClient": "webpack --config webpack.client.config.js --watch --colors",
"dev": "npm run watchClient",
"clean": "rm -rf node_modules/"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.8.1",
"history": "^1.13.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.1",
"react-router": "^1.0.2",
"redux": "^3.0.5"
},
"devDependencies": {
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"css-loader": "^0.23.0",
"eslint-plugin-react": "^3.11.3",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9"
}
}