-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.74 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
{
"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": {
"dev:client": "webpack-dev-server --env.NODE_ENV=development --config ./config/webpack.client.js",
"dev:client:noproxy": "webpack --watch --env.NODE_ENV=development --config ./config/webpack.client.js",
"dev:admin": "webpack --watch --env.NODE_ENV=development --config ./config/webpack.admin.js",
"dev": "nodemon --watch ./config --watch ./config.json --delay 2 --exec \"npm-run-all --parallel dev:client dev:admin\"",
"dev:noproxy": "nodemon --watch ./config --watch ./config.json --delay 2 --exec \"npm-run-all --parallel dev:admin dev:client:noproxy\"",
"build:client": "webpack --env.NODE_ENV=production --config ./config/webpack.client.js",
"build:admin": "webpack --env.NODE_ENV=production --config ./config/webpack.admin.js",
"build": "npm-run-all gtfo --parallel build:admin build:client",
"lint": "eslint src/ --cache",
"lint:fix": "eslint src/ --cache --fix",
"postinstall": "npm run build",
"gtfo": "rimraf dist"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/k1sul1/wordpress-theme-base.git"
},
"author": "",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/k1sul1/wordpress-theme-base/issues"
},
"homepage": "https://github.com/k1sul1/wordpress-theme-base#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^4.0.0",
"husky": "^2.4.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.7.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"react-hot-loader": "^4.11.0",
"resolve-url-loader": "^3.1.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"@hot-loader/react-dom": "^16.8.6",
"core-js": "^3.1.3",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"regenerator-runtime": "^0.13.2"
}
}