-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "web",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"generate": "nuxi generate",
"prepare": "simple-git-hooks && nuxi prepare",
"preview": "nuxi preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@element-plus/nuxt": "^1.0.9",
"@sentry/vue": "^8.35.0",
"@turf/bbox": "7.0.0",
"@turf/boolean-equal": "^7.1.0",
"@turf/helpers": "7.0.0",
"@types/diff": "^5.0.9",
"@types/geojson": "^7946.0.14",
"dayjs": "^1.11.10",
"diff": "^5.2.0",
"element-plus": "^2.7.1",
"maplibre-gl": "^4.1.2",
"underscore": "^1.13.6",
"v-lazy-component": "^3.0.9",
"vue": "^3.4.22"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@babel/core": "^7.24.4",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@nuxt/eslint": "^0.5.7",
"@nuxtjs/i18n": "^8.3.0",
"@types/node": "^20.12.7",
"@types/underscore": "^1.11.15",
"babel-jest": "^29.7.0",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"nuxt": "^3.12.2",
"postcss-html": "^1.6.0",
"simple-git-hooks": "^2.11.1",
"typescript": "5.6.3",
"vite": "^5.2.9",
"vue-tsc": "^2.0.29"
},
"simple-git-hooks": {
"commit-msg": "yarn dlx commitlint --edit $1",
"pre-commit": "yarn dlx lint-staged",
"preserveUnused": true
},
"lint-staged": {
"*": "yarn nuxi typecheck .",
"*.{vue,ts,js}": "yarn lint:fix"
}
}