-
Notifications
You must be signed in to change notification settings - Fork 802
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "logoly",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "vitest run --coverage"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@vueuse/core": "^10.11.0",
"dom-to-image": "^2.6.0",
"pinia": "^2.1.7",
"vue": "^3.5.5",
"vue-gtag": "^2.0.1",
"vue-router": "^4.5.0",
"vuetify": "^3.10.11"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/postcss": "^4.1.17",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^4.0.8",
"@vitest/coverage-v8": "^4.0.8",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"jsdom": "^27.2.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"sass": "^1.94.1",
"stylus": "^0.64.0",
"tailwindcss": "^4.1.17",
"vite": "^5.4.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vuetify": "^2.1.2",
"vitest": "^4.0.8"
}
}