-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.95 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "wp-react-spa-boilerplate",
"version": "0.0.0",
"description": "Theme boilerplate for WordPress using WP REST API and React.js",
"private": true,
"scripts": {
"start": "node run start",
"build": "node run build --production",
"vccw:clone": "git clone https://github.com/vccw-team/vccw",
"vccw:checkout": "cd vccw && git checkout refs/tags/3.0.5",
"vccw:copy": "cp -r ./vccw/provision ./provision && cp ./vccw/Vagrantfile ./Vagrantfile && cp ./vccw/ansible.cfg ./ansible.cfg",
"vccw:remove": "rm -rf ./vccw",
"vccw": "yarn run vccw:clone && yarn run vccw:checkout && yarn run vccw:copy && yarn run vccw:remove",
"setup": "yarn install && yarn run build && yarn run vccw && vagrant up && yarn run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel-core": "^6.0.20",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-ga": "^2.1.2",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"wpapi": "^1.0.0"
},
"devDependencies": {
"babel-loader": "^6.0.1",
"browser-sync": "^2.18.2",
"bs-html-injector": "^3.0.3",
"chokidar": "^1.6.1",
"copy": "^0.3.0",
"del": "^2.2.2",
"json-loader": "^0.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"standard": "^8.3.0",
"standard-loader": "^5.0.0",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"write-file-webpack-plugin": "^3.4.2"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"react-hot-loader/babel"
]
}
}