This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.15 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
{
"name": "wpvue",
"version": "1.0.0",
"description": "Boilerplate WP setup for a Vue based theme.",
"scripts": {
"dev": "webpack-dev-server --progress --mode development --env dev --config ./config/webpack.config.js",
"dev:watch": "webpack --mode development --env stage --config config/webpack.config.js --watch --progress",
"staging": "webpack --mode development --env stage --config config/webpack.config.js",
"build": "webpack --mode production --env prod --config config/webpack.config.js && npm run themebump",
"themebump": "sed -i.bak \"s/^Version:.*/Version: $(git log --pretty=\"%h\" -n1 HEAD)/\" ./style.css"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:timbomckay/wpvue.git"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"author": "Tim McKay",
"license": "ISC",
"homepage": "https://timbomckay.github.io/",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"babel-eslint": "^9.0.0",
"babel-polyfill": "^6.26.0",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"eslint": "^5.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"progress-bar-webpack-plugin": "^1.11.0",
"sass-loader": "^7.1.0",
"size-plugin": "^1.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-loader": "^15.4.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6",
"webpack-merge": "^4.1.4"
}
}