-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
{
"name": "wp-api-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline --progress --config webpack.dev.js",
"build": "npm run clean && webpack -p --progress --config webpack.production.js",
"clean": "rimraf ./build/*"
},
"author": "",
"license": "ISC",
"dependencies": {
"alt": "^0.18.6",
"axios": "^0.16.2",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"html-webpack-plugin": "^2.28.0",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}