-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
106 lines (106 loc) · 3.57 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "wordpress-theme-base",
"version": "1.0.0",
"description": "",
"wptheme": {
"publicPath": "/wp-content/themes/wordpress-theme-base/dist/",
"proxyURL": "https://wordpress.local"
},
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"scripts": {
"start": "webpack-dashboard -- npm run watch",
"clean": "del-cli -f 'dist/*' '!dist/.gitkeep'",
"dev:client": "webpack-dev-server --config ./build/webpack.client.js",
"dev:admin": "webpack --watch --config ./build/webpack.admin.js",
"watch": "npm-run-all clean --parallel dev:client dev:admin",
"dev": "nodemon --watch ./build --exec \"npm run watch\"",
"build:client": "webpack --env production --config ./build/webpack.client.js",
"build:admin": "webpack --env production --config ./build/webpack.admin.js",
"build": "npm-run-all clean --parallel build:admin build:client",
"lint:js": "eslint src/ --cache",
"phpcs": "./vendor/bin/phpcs --extensions=php -n -p -s --colors --ignore=/vendor ./",
"test": "npm run phpcs && npm run lint:js",
"prepush": "npm run test",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vincit/wordpress-theme-base.git"
},
"author": "",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/Vincit/wordpress-theme-base/issues"
},
"homepage": "https://github.com/Vincit/wordpress-theme-base#readme",
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-redom-jsx": "^1.0.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.8",
"del-cli": "^1.1.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"imagemin-webpack-plugin": "^1.5.2",
"jeet": "^7.2.0",
"nodemon": "^1.14.11",
"npm-install-webpack-plugin": "^4.0.5",
"npm-run-all": "^4.1.2",
"nyan-progress-webpack-plugin": "^1.2.0",
"postcss-loader": "^2.0.10",
"precss": "^2.0.0",
"style-loader": "^0.19",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"svg-inline-loader": "^0.8.0",
"url": "^0.11.0",
"url-loader": "^0.6",
"webpack": "^3.10.0",
"webpack-dashboard": "^1.0.2",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.10.1",
"webpack-manifest-plugin": "^1.3.2",
"webpack-merge": "^4.1.1",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"core-js": "^2.5.3",
"eslint-import-resolver-webpack": "^0.8.4",
"normalize.css": "^7.0.0",
"offline-plugin": "^4.9.0",
"postcss-flexbugs-fixes": "^3.2.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"redom": "^3.8.10",
"regenerator-runtime": "^0.11.1"
}
}