forked from xuff78/draw-on-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "draw-on-map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@turf/bearing": "^6.5.0",
"@turf/helpers": "^6.5.0",
"axios": "^1.3.4",
"babel-eslint": "^10.1.0",
"earcut": "^2.2.4",
"eventemitter3": "^5.0.0",
"geojson-vt": "^3.2.1",
"gl-matrix": "^3.4.3",
"gl-vec2": "^1.3.0",
"js-md5": "^0.7.3",
"jsencrypt": "^3.2.1",
"lodash-es": "^4.17.21",
"pinia": "^2.0.13",
"pinia-plugin-persist": "^1.0.0",
"polyline-miter-util": "^1.0.1",
"qs": "^6.10.3",
"regl": "^2.1.0",
"runtime-import": "^2.2.1",
"sass": "^1.59.3",
"terraformer-wkt-parser": "^1.2.1",
"three": "^0.145.0",
"viewport-mercator-project": "6.1.1",
"vue": "^3.2.45",
"vue-router": "4",
"vue-types": "^4.1.1",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.0.1",
"prettier": "^2.6.2",
"typescript": "^4.9.3",
"unplugin-icons": "^0.14.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^4.1.0",
"vite-plugin-html": "^3.2.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.0.24"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --fix",
"*.{css,scss,html,json,md}": "prettier --write"
}
}