-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "oil-based-boilerplate",
"version": "0.1.0",
"description": "A boilerplate for developing React-powered Wordpress themes, plugins, and guten-block that using shared components.",
"private": true,
"main": "index.js",
"scripts": {
"link-wp": "node scripts/symlink-local.js",
"docker-vols": "node scripts/volumes.js",
"start-docker": "docker-compose up -d",
"stop-docker": "docker-compose down",
"start": "webpack --config config/webpack.config.dev.js --mode=development --watch",
"build": "webpack --config config/webpack.config.js --mode=production"
},
"keywords": [],
"author": "kidunot89",
"license": "MIT",
"dependencies": {
"apollo-boost": "^0.1.28",
"classnames": "^2.2.6",
"graphql": "^14.3.0",
"normalize-scss": "^7.0.1",
"react-apollo": "^2.5.5",
"react-router-dom": "^4.3.1",
"recompose": "^0.30.0",
"wp-graphql-composer": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fs-extra": "^7.0.1",
"make-symlinks": "^1.1.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"simple-git": "^1.113.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-manifest-plugin": "^2.0.4"
}
}