This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.63 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
{
"name": "plugin-vue-starter",
"version": "0.1.0",
"author": "Onno Gabriel",
"license": "GPL-3.0+",
"scripts": {
"development": "./node_modules/webpack/bin/webpack.js --mode=development --progress --hide-modules --config=./webpack.config.js",
"dev": "npm run development",
"watch": "./node_modules/webpack/bin/webpack.js --mode=development --watch --progress --hide-modules --config=./webpack.config.js",
"watch-poll": "npm run watch --watch-poll",
"production": "./node_modules/webpack/bin/webpack.js --mode=production --no-progress --hide-modules --config=./webpack.config.js",
"prod": "npm run production"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^4.7.1",
"node-sass": "^4.13.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.21.1",
"vue": "^2.6.11",
"vue-loader": "^15.9.1"
}
}