-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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": "diablo4-map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix src",
"lint:style": "stylelint --fix **/*.{scss,vue}",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"leaflet": "^1.9.4",
"leaflet-fullscreen": "^1.0.2",
"meow": "^9.0.0",
"vue": "^3.5.13",
"vue-i18n": "^10.0.4"
},
"devDependencies": {
"@types/leaflet": "^1.9.14",
"@types/leaflet-fullscreen": "^1.0.9",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@eslint/js": "^9.15.0",
"@vitejs/plugin-vue": "^5.2.0",
"commitizen": "^4.3.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"inquirer": "^12.1.0",
"lint-staged": "^15.2.10",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"stylelint": "^16.10.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"vite-plugin-checker": "^0.8.0",
"vue-tsc": "^2.1.10"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
}