-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.17 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
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
{
"name": "vue-basic-framework",
"version": "1.0.0",
"private": true,
"description": "A simple and easy-to-use basic framework of vue",
"author": "jaydon<vshow@dooomi.com>",
"license": "MIT",
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.21.1",
"dayjs": "^1.10.5",
"js-cookie": "^2.2.1",
"local-storage": "^2.0.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"query-string": "^7.0.0",
"styled-tools": "^1.7.2",
"v-click-outside": "^3.1.2",
"vant": "^2.6.1",
"vue": "^2.6.11",
"vue-i18n": "^8.24.4",
"vue-navigation": "^1.1.4",
"vue-router": "^3.1.6",
"vue-styled-components": "./lib/vue-styled-components-v1.6.0.tgz",
"vuex": "^3.1.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-router": "~4.3.0",
"@vue/cli-plugin-vuex": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@yaireo/console-colors": "^1.1.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^11.0.0",
"node-sass": "^4.12.0",
"postcss-pxtrem": "^3.0.3",
"prettier": "^2.3.1",
"sass-loader": "^8.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"vconsole": "^3.3.4",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.{vue,css,less,scss}": [
"prettier --write",
"stylelint --fix"
]
},
"stylelint": {
"extends": [
"stylelint-config-standard"
],
"rules": {
"at-rule-no-unknown": null,
"selector-pseudo-class-no-unknown": null,
"property-no-unknown": null
}
},
"browserslist": [
"Android >= 4.0",
"iOS >= 7",
"> 1%",
"last 2 versions",
"not dead"
]
}