-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "gamelifecounter",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build-only": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build",
"test": "vitest run",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"{src,.}/**/*.{ts,vue,css,json,html}\""
},
"dependencies": {
"vue": "^3.5.40"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.1.2",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"jsdom": "^30.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vite": "^8.2.0",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.9"
},
"overrides": {
"brace-expansion": "^5.0.9"
}
}