-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
80 lines (80 loc) · 2.02 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": "vue-cesium-demo",
"version": "0.0.0",
"scripts": {
"cz": "czg",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint ./src --ext .vue,.js,.ts,.jsx,.tsx && pretty-quick --check --branch main ./src",
"prepare": "husky install"
},
"dependencies": {
"@quasar/extras": "^1.16.9",
"@turf/turf": "^6.5.0",
"axios": "^1.6.7",
"axios-mock-adapter": "^1.22.0",
"interactjs": "^1.10.26",
"lodash": "^4.17.21",
"lowdb": "1.0.0",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"qs": "^6.11.2",
"quasar": "^2.14.3",
"uuid": "^9.0.1",
"vue": "^3.4.15",
"vue-cesium": "^3.2.4",
"vue-i18n": "^9.9.0",
"vue-router": "^4.2.5",
"vxe-table": "^4.5.18",
"webrtc-adapter": "^8.2.3",
"wkt-parser": "^1.3.3",
"xe-utils": "^3.5.18"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@quasar/vite-plugin": "^1.6.0",
"@types/geojson": "^7946.0.13",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"commitizen": "^4.3.0",
"cz-git": "^1.8.0",
"czg": "^1.8.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-vue": "^9.20.1",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"prettier-eslint": "^16.3.0",
"pretty-quick": "^4.0.0",
"sass": "1.33.0",
"terser": "^5.27.0",
"typescript": "^5.3.3",
"vite": "4.5.2",
"vue-tsc": "^1.8.27"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie 11",
"not op_mini all"
],
"engines": {
"node": ">= 18"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.--write": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
}
}