-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "vue3-mapbox",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prepare": "husky install",
"lint-staged": "lint-staged",
"lint:stylelint": "stylelint src/**/*.{vue,css,scss} --fix"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.6",
"@sentry/tracing": "^7.13.0",
"@sentry/vue": "^7.13.0",
"@types/js-cookie": "^3.0.2",
"@types/qs": "^6.9.7",
"@volar/vue-language-plugin-pug": "^1.0.9",
"@vue/compiler-sfc": "^3.2.33",
"axios": "^1.1.3",
"amfe-flexible": "^2.2.1",
"autoprefixer": "^10.4.8",
"dayjs": "^1.11.1",
"echarts": "^5.3.2",
"echarts-gl": "^2.0.9",
"echarts-liquidfill": "^3.1.0",
"element-plus": "^2.2.5",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"pinia": "^2.0.0-rc.10",
"pinia-plugin-persist": "^1.0.0",
"postcss-pxtorem": "^6.0.0",
"pug-html-loader": "^1.1.5",
"qs": "^6.10.3",
"vite-plugin-compression": "^0.5.1",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.3",
"@types/node": "18.8.0",
"@vitejs/plugin-vue": "^2.3.1",
"@volar/vue-language-plugin-pug": "^1.0.8",
"eslint": "^8.23.0",
"husky": "^7.0.0",
"lint-staged": "^12.4.1",
"postcss-html": "^1.5.0",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"rollup-plugin-visualizer": "^5.6.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.0",
"script-loader": "^0.7.2",
"stylelint": "^14.11.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.4",
"unplugin-auto-import": "^0.7.1",
"unplugin-icons": "^0.14.7",
"unplugin-vue-components": "^0.22.4",
"vite": "^2.9.5",
"vue-tsc": "1.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix",
"git add ."
]
}
}