-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "vue-wp-starter",
"version": "1.0.0",
"description": "A WordPress Vue.js starter plugin",
"author": "Tareq Hasan <tareq@wedevs.com>",
"license": "GPLv2",
"private": true,
"scripts": {
"dev": "webpack --watch --progress --hide-modules",
"dev-build": "webpack -d --mode development",
"build": "webpack -p --mode production"
},
"dependencies": {
"vue": "^2.6.11",
"vue-router": "^3.4.3"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "latest",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^3.6.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"terser-webpack-plugin": "^4.1.0",
"url-loader": "^2.3.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}