forked from erisu/pwa-vue-app-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "pwa-vue-app-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack -p --mode production",
"build:dev": "webpack -d --mode development",
"dev": "webpack-dev-server --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"babel",
"pwa",
"vue",
"vuejs",
"webpack",
"webpack-dev-server"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"sw-precache-webpack-plugin": "^0.11.5",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1"
}
}