-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.31 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.31 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "web-perf-reporting",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"dupes": "fallow dupes",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@libsql/client": "^0.14.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@sentry/nextjs": "10.45.0",
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "https://pkg.pr.new/@tanstack/react-query@10366",
"@tanstack/react-table": "^8.21.3",
"@types/pako": "^2.0.4",
"@vercel/functions": "^2.2.13",
"@xstate/store-react": "^1.0.1",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.45.2",
"embla-carousel-react": "^8.6.0",
"lighthouse": "^12.8.2",
"lucide-react": "^0.475.0",
"next": "16.2.1",
"pako": "^2.1.0",
"posthog-js": "^1.363.1",
"react": "canary",
"react-dom": "canary",
"react-hook-form": "^7.72.0",
"react-markdown": "^10.1.0",
"recharts": "^2.15.4",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^7.7.4",
"zipson": "^0.2.12",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.19.37",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260307.1",
"@vitest/coverage-v8": "^4.1.0",
"drizzle-kit": "^0.30.6",
"happy-dom": "^20.8.9",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.0",
"webpack": "^5.104.1"
},
"pnpm": {
"overrides": {
"@sentry/node@9.47.1>minimatch": "10.2.4",
"esbuild@<=0.24.2": ">=0.25.0",
"effect@<3.20.0": ">=3.20.0",
"brace-expansion@>=2.0.0 <2.0.3": ">=2.0.3",
"brace-expansion@>=4.0.0 <5.0.5": ">=5.0.5",
"brace-expansion@5.0.4": "5.0.5",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"happy-dom@<20.8.9": ">=20.8.9",
"happy-dom@>=15.10.0 <=20.8.7": ">=20.8.8",
"lodash-es@>=4.0.0 <=4.17.23": ">=4.18.0",
"lodash@>=4.0.0 <=4.17.23": ">=4.18.0",
"lodash-es@<=4.17.23": ">=4.18.0",
"lodash@<=4.17.23": ">=4.18.0",
"drizzle-orm@<0.45.2": ">=0.45.2",
"basic-ftp@=5.2.0": ">=5.2.1"
}
}
}