-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.15 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "winter-mobile-ui",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src}/**/*.{js,vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged --no-stash"
},
"dependencies": {
"@vant/touch-emulator": "^1.3.2",
"@vueuse/core": "^5.3.0",
"axios": "^0.26.1",
"date-fns": "^2.28.0",
"element-resize-detector": "^1.2.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"pinia": "^2.0.14",
"pinia-plugin-persistedstate": "^1.6.1",
"qs": "^6.10.5",
"vant": "^3.5.1",
"vue": "^3.2.37",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/element-resize-detector": "^1.1.3",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.42",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@winter-studio/postcss-px-to-viewport": "^1.1.3",
"autoprefixer": "^10.4.7",
"core-js": "^3.23.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^7.0.4",
"lint-staged": "^13.0.0",
"postcss": "^8.4.14",
"postcss-html": "^1.4.1",
"postcss-scss": "^4.0.4",
"prettier": "^2.6.2",
"rollup": "^2.75.6",
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.3",
"unplugin-vue-components": "^0.19.6",
"vite": "^2.9.12",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vue-eslint-parser": "^9.0.2",
"vue-tsc": "^0.37.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}