-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.1 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
89
90
91
{
"name": "the-dahan-codex",
"private": true,
"packageManager": "pnpm@11.11.0",
"version": "1.0.0",
"description": "Spirit Island companion app",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"generate:public-routes": "node scripts/generate-public-routes.mjs",
"prerender:public-routes": "node scripts/prerender-public-routes.mjs",
"build:public": "pnpm generate:public-routes && pnpm build && pnpm prerender:public-routes",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"typecheck:convex": "convex typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write . && prettier --write \"**/*.{md,mdx,yml,yaml}\"",
"format:check": "biome format . && prettier --check \"**/*.{md,mdx,yml,yaml}\"",
"knip": "knip",
"jscpd": "jscpd .",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"check": "biome check . && prettier --check \"**/*.{md,mdx,yml,yaml}\" && pnpm typecheck && pnpm typecheck:convex && pnpm knip && pnpm jscpd",
"ci": "pnpm check && pnpm build && pnpm test:e2e",
"prepare": "lefthook install"
},
"dependencies": {
"@clerk/react": "^6.15.2",
"@convex-dev/react-query": "^0.1.0",
"@radix-ui/react-accordion": "^1.2.20",
"@radix-ui/react-alert-dialog": "^1.1.23",
"@radix-ui/react-collapsible": "^1.1.20",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-radio-group": "^1.4.7",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-tabs": "^1.1.21",
"@tanstack/query-persist-client-core": "^5.102.8",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-router": "^1.170.35",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.45.0",
"date-fns": "^4.4.0",
"idb-keyval": "^6.3.0",
"lucide-react": "^1.45.0",
"papaparse": "^5.7.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"react-intersection-observer": "^10.1.0",
"recharts": "^3.10.1",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"vaul": "^1.1.2",
"workbox-core": "^7.4.1",
"workbox-expiration": "^7.4.1",
"workbox-precaching": "^7.4.1",
"workbox-routing": "^7.4.1",
"workbox-strategies": "^7.4.1",
"workbox-window": "^7.4.1",
"zod": "^4.6.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/router-plugin": "^1.168.27",
"@types/node": "^26.1.2",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vitejs/plugin-react": "^6.0.5",
"jscpd": "^5.0.14",
"knip": "^6.32.0",
"lefthook": "^2.1.10",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10",
"wrangler": "^4.120.0"
}
}