-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"name": "gamelifecounter",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"test": "npm run build-only"
},
"dependencies": {
"@radial-color-picker/vue-color-picker": "^6.0.0",
"vue": "^3.5.27"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.3",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"jsdom": "^27.4.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.10",
"typescript": "^5.8.2",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.0.16",
"vue-tsc": "^2.2.10"
}
}