-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "react-netlify",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "netlify dev -c vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview",
"typecheck": "tsc -b",
"db:migrate": "sqlite3 local.db < init.sql",
"db": "sqlite3 -init .sqliterc local.db",
"db:reset": "rm -f local.db && pnpm run db:migrate",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@fontsource-variable/geist": "^5.2.9",
"@hookform/resolvers": "^5.4.0",
"@libsql/client": "^0.17.4",
"@netlify/edge-functions": "^3.0.8",
"@netlify/functions": "^5.3.0",
"@phosphor-icons/react": "^2.1.10",
"@tanstack/react-query": "^5.101.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"google-auth-library": "^10.9.0",
"pino": "^10.3.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-error-boundary": "^6.1.2",
"react-hook-form": "^7.81.0",
"shadcn": "^4.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"type-fest": "^5.8.0",
"wouter": "^3.10.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.3",
"@tsconfig/node22": "^22.0.5",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/browser-playwright": "^4.1.10",
"babel-plugin-react-compiler": "^1.0.0",
"nano-staged": "^1.0.2",
"netlify-cli": "^26.2.0",
"oxfmt": "^0.56.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.23.0",
"pino-pretty": "^13.1.3",
"simple-git-hooks": "^2.13.1",
"typescript": "~6.0.3",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"vitest-browser-react": "^2.2.0"
}
}