-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "vue-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:unit": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,vue}\" \"tests/**/*.{js,ts}\"",
"pre-commit": "lint-staged --allow-empty",
"prepare": "husky"
},
"dependencies": {
"@vueuse/router": "^14.2.1",
"cookie-parser": "^1.4.7",
"express": "^5.2.1",
"mapbox-gl": "^3.18.1",
"swiper": "^12.1.0",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/eslint-plugin": "1.3.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.34.0",
"eslint-plugin-vue": "^9.33.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"vite": "^7.1.3",
"vite-plugin-vue-devtools": "^8.0.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"**/*.*": [
"eslint --fix"
]
}
}