-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.41 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "veggies",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "CC-BY-NC-ND-4.0",
"scripts": {
"dev": "vite",
"build": "npm run type-check && vite build --mode staging",
"build:ci": "npm run type-check && vite build --mode ci",
"build:production": "npm run type-check && vite build --base=/",
"preview": "vite preview",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"type-check": "vue-tsc --build --noEmit",
"lint": "eslint .",
"format": "prettier --write src/"
},
"dependencies": {
"@fontsource/bungee-shade": "5.2.7",
"@fontsource/nunito": "5.2.7",
"@headlessui/vue": "1.7.23",
"@mdi/js": "7.4.47",
"@vueuse/core": "14.2.1",
"canvas-confetti": "1.9.4",
"chart.js": "4.5.1",
"chartjs-chart-matrix": "^3.0.0",
"chartjs-plugin-annotation": "3.1.0",
"chartjs-plugin-datalabels": "2.2.0",
"luxon": "3.7.2",
"pinia": "3.0.4",
"remeda": "2.33.6",
"simple-icons": "16.8.0",
"vue": "3.5.28",
"vue-chartjs": "5.3.3",
"vue-i18n": "11.2.8",
"vue-router": "5.0.2",
"vue-tippy": "6.7.1",
"zod": "4.3.6"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@pinia/testing": "1.0.3",
"@playwright/test": "1.58.2",
"@tsconfig/node22": "22.0.5",
"@types/canvas-confetti": "1.9.0",
"@types/jsdom": "27.0.0",
"@types/luxon": "3.7.1",
"@types/node": "25.2.3",
"@vitejs/plugin-vue": "6.0.4",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/eslint-plugin": "1.6.6",
"@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",
"autoprefixer": "10.4.24",
"canvas": "^3.2.1",
"eslint": "9.39.2",
"eslint-plugin-playwright": "2.5.1",
"eslint-plugin-vue": "10.7.0",
"eslint-plugin-vuejs-accessibility": "2.4.1",
"jsdom": "28.0.0",
"postcss": "8.5.6",
"prettier": "3.8.1",
"tailwindcss": "3.4.18",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-pwa": "1.2.0",
"vite-plugin-vue-devtools": "8.0.6",
"vitest": "3.2.4",
"vue-tsc": "3.2.4"
},
"engines": {
"node": ">= 24.0.0"
},
"postcss": {
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {},
"autoprefixer": {}
}
},
"overrides": {
"typescript-eslint": "8.53.1"
}
}