-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "awesome-vue-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "NODE_ENV=development vue-cli-service serve",
"build:prd": "NODE_ENV=production vue-cli-service build",
"build:stg": "NODE_ENV=production vue-cli-service build --mode staging",
"report": "NODE_ENV=production vue-cli-service build --report --mode staging && static dist/report.html",
"lint": "vue-cli-service lint",
"new": "hygen new",
"docs": "vuepress dev -p 7070",
"docs:build": "DEPLOY_ENV=gh-pages vuepress build",
"docs:deploy": "gh-pages -d .vuepress/dist"
},
"dependencies": {
"debounce-promise": "^3.1.0",
"element-ui": "~2.5.2",
"lodash": "~4.17.11",
"nprogress": "~0.2.0",
"path-to-regexp": "~2.4.0",
"tailwindcss": "^1.0.0-beta.8",
"v-debounce": "^0.1.2",
"vee-validate": "~2.1.5",
"vue": "~2.5.21",
"vue-awesome": "~3.3.1",
"vue-configuration": "~1.0.3",
"vue-fragment": "~1.5.0",
"vue-i18n": "~8.7.0",
"vue-resource": "~1.5.1",
"vue-router": "~3.0.2",
"vue-router-layout": "~0.1.3",
"vue-wait": "~1.3.3",
"vuex": "~3.1.0",
"vuex-pathify": "~1.1.3",
"vuex-persist": "~2.0.0",
"vuex-router-sync": "~5.0.0"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^5.12.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.1.0",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"hygen": "^2.1.1",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-resources-loader": "^1.2.1",
"vue-cli-plugin-element": "^1.0.1",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-template-compiler": "^2.5.21",
"vuepress": "^0.14.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}