-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dev-build": "vue-cli-service build --mode development",
"lint": "vue-cli-service lint",
"postinstall": "node ./checkver.js"
},
"engines": {
"node": ">=10.15.3",
"npm": ">=6.4.1",
"yarn": ">=1.13.0"
},
"dependencies": {
"axios": "^0.19.2",
"babel-plugin-component": "^1.1.1",
"babel-polyfill": "^6.26.0",
"compression-webpack-plugin": "^3.1.0",
"core-js": "^3.4.4",
"datejs": "^1.0.0-rc3",
"element-ui": "^2.4.5",
"image-webpack-loader": "^6.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"qrcodejs2": "^0.0.2",
"vee-validate": "^3.2.5",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-facebook-signin-button": "^1.0.1",
"vue-google-login": "^2.0.3",
"vue-google-signin-button-directive": "^1.0.3",
"vue-i18n": "^7.4.0",
"vue-lazyload": "^1.3.3",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"vuex-class": "^0.3.2",
"vuex-router-sync": "^5.0.0",
"webpack": "^4.41.6"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@gitlab/eslint-plugin-vue-i18n": "^2.0.0",
"@types/js-cookie": "^2.2.4",
"@types/lodash": "^4.14.66",
"@typescript-eslint/parser": "^2.23.0",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"crypto": "^1.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.2.2",
"eslit": "^6.0.0",
"lint-staged": "^9.5.0",
"moment": "^2.24.0",
"node-sass": "^4.7.2",
"qs": "^6.9.1",
"sass-loader": "^6.0.7",
"semver": "^7.3.2",
"style-resources-loader": "^1.3.3",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"vue-cli-plugin-element": "^1.0.1",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}