-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.16 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
{
"name": "monei",
"private": true,
"version": "1.3.0",
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"collect:dist": "node scripts/build.js",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest watch",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write \"src/**/*.{ts,vue}\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,vue}\" \"test/**/*.ts\"",
"migrate:db": "tsx --env-file=.env.migration scripts/migrate-supabase-to-neon.ts",
"prepare": "husky",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@clerk/vue": "2.0.16",
"@neondatabase/serverless": "1.1.0",
"@tailwindcss/vite": "4.1.18",
"@tanstack/query-async-storage-persister": "5.100.10",
"@tanstack/query-persist-client-core": "5.100.10",
"@tanstack/vue-query": "5.100.10",
"@vitest/coverage-v8": "4.1.0",
"dexie": "4.4.2",
"exceljs": "4.4.0",
"firebase": "12.13.0",
"lucide-vue-next": "0.575.0",
"pinia": "2.3.1",
"postgres": "3.4.9",
"reka-ui": "2.7.0",
"tailwindcss": "4.1.18",
"vitest": "4.1.0",
"vue": "3.5.24",
"vue-router": "4.6.4"
},
"overrides": {
"@clerk/shared": "4.12.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.0",
"@supabase/supabase-js": "2.105.4",
"@types/node": "24.10.1",
"@vitejs/plugin-vue": "6.0.1",
"@vitest/ui": "4.1.0",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.8.1",
"eslint": "10.0.2",
"eslint-plugin-vue": "10.8.0",
"husky": "9.1.7",
"jsdom": "27.4.0",
"prettier": "3.8.1",
"tsx": "4.22.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"unplugin-vue-components": "31.0.0",
"vite": "7.3.5",
"vite-plugin-pwa": "1.2.0",
"vue-tsc": "3.1.4"
}
}