-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.38 KB
/
package.json
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
{
"name": "veggies",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only -- {@}\" -- --mode staging",
"build:ci": "run-p type-check \"build-only -- {@}\" -- --mode ci",
"build:production": "run-p type-check \"build-only -- {@}\" -- --base=/",
"preview": "vite preview",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint .",
"format": "prettier --write src/"
},
"dependencies": {
"@fontsource/bungee-shade": "^5.1.0",
"@fontsource/nunito": "^5.1.0",
"@headlessui/vue": "^1.7.23",
"@mdi/js": "^7.4.47",
"@vueuse/core": "^12.2.0",
"@xstate/vue": "^4.0.0",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.4.7",
"chartjs-plugin-datalabels": "^2.2.0",
"luxon": "^3.5.0",
"pinia": "^2.3.0",
"remeda": "^2.19.0",
"simple-icons": "^14.0.0",
"vue": "3.5.13",
"vue-chartjs": "^5.3.2",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0",
"vue-tippy": "^6.5.0",
"xstate": "^5.19.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@pinia/testing": "^0.1.7",
"@playwright/test": "^1.49.1",
"@tsconfig/node20": "^20.1.4",
"@types/canvas-confetti": "^1.9.0",
"@types/jsdom": "^21.1.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.20",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"engines": {
"node": "> 20.0.0"
},
"postcss": {
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {},
"autoprefixer": {}
}
}
}