-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.12 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
{
"name": "strato-stack",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:check": "drizzle-kit check",
"studio": "npx drizzle-kit studio",
"update-check": "npx npm-check-updates",
"update-all": "npx npm-check-updates -u && npm install",
"update-safe": "npx npm-check-updates -u --target minor && npm install",
"update-router": "npx npm-check-updates -u \"/^@react-router\\/.*$/\" && npm install",
"dev:infra": "docker compose -f docker-compose.dev.yaml up -d",
"dev:infra:down": "docker compose -f docker-compose.dev.yaml down",
"dev:infra:reset": "docker compose -f docker-compose.dev.yaml down -v"
},
"dependencies": {
"@forge42/seo-tools": "^1.4.5",
"@paralleldrive/cuid2": "^3.3.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@react-router/node": "^7.14.1",
"@react-router/serve": "^7.14.1",
"@tailwindcss/vite": "^4.2.3",
"better-auth": "^1.6.5",
"bullmq": "^5.75.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isbot": "^5.1.39",
"lucide-react": "^1.8.0",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router": "^7.14.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@react-router/dev": "^7.14.1",
"@react-router/fs-routes": "^7.14.1",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.3",
"typescript": "^6.0.3",
"vite": "^8.0.9"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}