-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.59 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
{
"name": "advertisingplatform",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:test": "vite build --mode test",
"build:pre": "vite build --mode pre",
"preview": "vite preview",
"lint": "eslint --ext .vue,.js,.jsx,.ts,.tsx ./ --max-warnings 0",
"lint:fix": "eslint --ext .vue,.js,jsx,.ts,.tsx ./ --max-warnings 0 --fix",
"stylelint": "stylelint src/**/*.{html,vue,sass,less}",
"stylelint:fix": "stylelint --fix src/**/*.{html,vue,vss,sass,less}"
},
"dependencies": {
"animate.css": "^4.1.1",
"ant-design-vue": "^3.2.20",
"axios": "^1.2.6",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"default-passive-events": "^2.0.0",
"echarts": "^5.4.1",
"flag-icon-css": "^4.1.7",
"jquery": "^3.6.3",
"js-md5": "^0.7.3",
"less": "^4.1.3",
"libphonenumber-js": "^1.10.61",
"lodash": "^4.17.21",
"mitt": "^2.1.0",
"pinia": "^2.0.29",
"pinia-plugin-persistedstate": "^3.0.2",
"qs": "^6.11.0",
"reset-css": "^5.0.1",
"screenfull": "^6.0.2",
"tdesign-icons-vue-next": "^0.2.2",
"tdesign-vue-next": "^1.9.4",
"vue": "^3.2.45",
"vue-clipboard3": "^2.0.0",
"vue-i18n": "^10.0.0-beta.1",
"vue-router": "^4.1.6",
"vue3-perfect-scrollbar": "^1.6.1",
"weixin-js-sdk": "^1.6.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jquery": "^3.5.16",
"@types/js-md5": "^0.7.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"eslint-plugin-vue-scoped-css": "^2.2.0",
"less": "^4.1.1",
"prettier": "^2.8.3",
"stylelint": "~13.13.1",
"stylelint-config-prettier": "~9.0.3",
"stylelint-less": "1.0.1",
"stylelint-order": "~4.1.0",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.0.0",
"vue-tsc": "^1.0.11"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"npm run lint:fix",
"git add ."
],
"*.{html,vue,vss,sass,less}": [
"npm run stylelint:fix",
"git add ."
]
}
}