-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.57 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.57 KB
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
{
"author": "github.com/taplar",
"dependencies": {
"@babel/core": "~7.9.6",
"@babel/preset-env": "~7.9.6",
"babel-loader": "~8.1.0",
"clean-webpack-plugin": "~3.0.0",
"copy-webpack-plugin": "~5.1.1",
"css-loader": "~3.5.3",
"file-loader": "~6.0.0",
"html-webpack-plugin": "~4.3.0",
"html-webpack-template": "~6.2.0",
"less": "~3.11.1",
"less-loader": "~6.0.0",
"mini-css-extract-plugin": "~0.9.0",
"serve": "~10.1.2",
"style-loader": "~1.2.1",
"url-loader": "~4.1.0",
"vue": "~2.6.11",
"vue-loader": "~15.9.2",
"vue-resource": "~1.5.1",
"vue-template-compiler": "~2.6.11",
"vuex": "~3.3.0",
"webpack": "~4.43.0",
"webpack-cli": "~3.3.11",
"workbox-webpack-plugin": "3.6.x"
},
"description": "Npm scripts for developing an application written in vue and compiled with webpack",
"license": "MIT",
"name": "webpack-vue",
"repository": {},
"scripts": {
"build": "webpack",
"build-production": "webpack --config webpack.production.config.js --optimize-minimize",
"build-watch": "webpack --watch",
"help": "webpack help",
"install-all": "npm install -g npm@latest && npm install",
"install-at-work": "npm config set strict-ssl false && npm run-script install-all && npm config set strict-ssl true",
"server": "serve -p 8443 dist/",
"update-all": "npm install -g npm@latest && npm update",
"update-all-at-work": "npm config set strict-ssl false && npm run-script update-all && npm config set strict-ssl true",
"update-at-work": "npm config set strict-ssl false && npm update && npm config set strict-ssl true"
},
"version": "1.0.0"
}