-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "chcp 65001 && start-server-and-test preview http://localhost:4173 \"cypress run --e2e\"",
"test:e2e:dev": "chcp 65001 && start-server-and-test \"vite dev --port 4173\" http://localhost:4173 \"cypress open --e2e\"",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@vercel/speed-insights": "^1.3.1",
"axios": "^1.13.2",
"vite-plugin-vuetify": "^2.1.3",
"vue": "^3.5.27",
"vue-router": "^4.6.4",
"vuetify": "^3.11.7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node24": "^24.0.4",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.9",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress": "^15.9.0",
"eslint": "^9.39.2",
"eslint-plugin-cypress": "^5.2.1",
"eslint-plugin-vue": "^10.7.0",
"jsdom": "^27.4.0",
"less": "^4.5.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.0",
"start-server-and-test": "^2.1.3",
"typescript": "~5.8.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-sitemap": "^0.8.2",
"vitest": "^4.0.17",
"vue-tsc": "^3.2.2"
},
"type": "module"
}