-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
{
"name": "wp-react-redux-boilerplate",
"version": "1.0.0",
"description": "A boilerplate theme for WordPress built with React and Redux.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"start": "webpack-dev-server --inline --progress --config webpack.dev.config.js",
"build": "npm run clean && webpack -p --progress --config webpack.prod.config.js",
"watch": "webpack --progress --watch --config webpack.dev.config.js",
"clean": "rimraf ./build/*"
},
"author": "Casey Morris",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"prop-types": "^15.6.0",
"react": "^15.5.4",
"react-document-title": "^2.0.3",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^21.2.0",
"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",
"jest": "^21.2.1",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.1"
}
}