-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.06 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.06 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
{
"name": "fullstack-react-template",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"auth:generate": "pnpx @better-auth/cli generate --config app/config/context --output app/server/db/schema/auth-schema.ts",
"check": "lefthook run pre-push",
"typecheck": "react-router typegen && tsc",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"e2e": "playwright test",
"prepare": "lefthook install"
},
"engines": {
"node": ">=22.14.0",
"pnpm": ">=9.15.1"
},
"dependencies": {
"@conform-to/react": "^1.3.0",
"@conform-to/zod": "^1.3.0",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-navigation-menu": "^1.2.6",
"@radix-ui/react-slot": "^1.2.0",
"@react-router/fs-routes": "^7.5.0",
"@react-router/node": "^7.5.0",
"@react-router/serve": "^7.5.0",
"better-auth": "^1.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.41.0",
"input-otp": "^1.4.2",
"isbot": "^5.1.26",
"lucide-react": "^0.483.0",
"option-t": "^52.1.0",
"pg": "^8.14.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.5.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@playwright/test": "^1.51.1",
"@react-router/dev": "^7.5.0",
"@tailwindcss/vite": "^4.1.3",
"@types/node": "^22.14.0",
"@types/pg": "^8.11.11",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"drizzle-kit": "^0.30.6",
"lefthook": "^1.11.8",
"react-router-devtools": "^1.1.10",
"tailwindcss": "^4.1.3",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-tsconfig-paths": "^5.1.4"
}
}