-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.51 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.51 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
{
"name": "gluko",
"version": "0.7.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"test:unit:run": "vitest --run",
"test:unit:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ci": "CI=true npm run build && CI=true playwright test",
"test:e2e:a11y": "playwright test e2e/accessibility.spec.ts",
"test:e2e:a11y:ci": "CI=true npm run build && CI=true playwright test e2e/accessibility.spec.ts",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "prettier --write src/",
"postinstall": "playwright install --with-deps"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@popperjs/core": "^2.11.8",
"@tailwindcss/postcss": "^4.1.18",
"@vueuse/core": "^11.3.0",
"lucide-vue-next": "^0.562.0",
"minisearch": "^7.2.0",
"pinia": "^3.0.3",
"reka-ui": "^2.6.1",
"vue": "^3.5.21",
"vue-i18n": "^9.14.5",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@eslint/js": "^9.36.0",
"@pinia/testing": "^1.0.2",
"@playwright/test": "^1.49.1",
"@rushstack/eslint-patch": "^1.10.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.5.0",
"fake-indexeddb": "^6.2.5",
"globals": "^16.4.0",
"happy-dom": "^20.0.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"sass": "^1.77.8",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.2",
"vite": "^6.3.6",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^3.2.4",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.1.10"
},
"overrides": {
"serialize-javascript": "^7.0.4"
}
}