forked from badou119/vuejs-wordpress-plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.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
{
"name": "vwp-plugin",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.org/Automattic/_s.svg?branch=master)](https://travis-ci.org/Automattic/_s)",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack --watch --config ./webpack/webpack.config.js",
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.js --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Evan Agee",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"serialize-javascript": ">=2.1.1"
}
}