generated from forge-42/base-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.36 KB
/
package.json
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
106
107
108
109
110
111
112
113
{
"name": "@forge42/base-stack",
"version": "0.0.1",
"author": "forge42.dev",
"private": true,
"sideEffects": false,
"license": "MIT",
"type": "module",
"scripts": {
"execute": "tsx",
"clean": "git clean -fdX --exclude=\"!.env\"",
"script": "tsx scripts/setup.ts",
"cleanup": "pnpm run script scripts/cleanup.ts",
"build": "react-router build",
"dev": "react-router dev",
"start": "NODE_ENV=production node ./build/server/index.js",
"test": "vitest run",
"test:ui": "vitest --ui --api 9527",
"test:cov": "vitest run --coverage",
"test:debug": "jest-preview",
"test:live": "npm-run-all -p test:ui test:debug",
"typecheck": "tsc",
"validate": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run check:unused",
"check": "biome check .",
"check:fix": "biome check --fix .",
"check:unused": "knip --max-issues 1",
"check:unused:fix": "knip --fix",
"typegen": "react-router typegen",
"postinstall": "pnpm run typegen",
"db:gen": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "pnpm tsx prisma/seed.ts confirm",
"generate-env": "pnpm run generate-env:good-os",
"generate-env:good-os": "APP_DEPLOYMENT_ENV=${APP_DEPLOYMENT_ENV:=development} op inject -i .env.example -o .env",
"generate-env:windows": "APP_DEPLOYMENT_ENV=development op inject -i .env.example -o .env"
},
"dependencies": {
"-": "0.0.1",
"@forge42/seo-tools": "1.3.0",
"@hookform/resolvers": "3.9.1",
"@mjackson/form-data-parser": "0.5.0",
"@prisma/client": "6.0.1",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@react-router/node": "7.0.1",
"@supabase/ssr": "0.5.2",
"@supabase/supabase-js": "2.46.2",
"@types/bcryptjs": "2.4.6",
"D": "1.0.0",
"bcryptjs": "2.4.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"hono": "4.6.12",
"i18next": "23.15.2",
"i18next-browser-languagedetector": "8.0.0",
"i18next-fetch-backend": "6.0.0",
"isbot": "5.1.17",
"lucide-react": "0.465.0",
"pretty-cache-header": "1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "15.1.1",
"react-router": "7.0.1",
"react-router-hono-server": "2.0.0",
"remix-hono": "0.0.16",
"remix-i18next": "7.0.0",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@dotenvx/dotenvx": "1.24.5",
"@react-router/dev": "7.0.1",
"@react-router/fs-routes": "7.0.1",
"@testing-library/react": "16.0.1",
"@types/node": "22.9.1",
"@types/prompt": "1.1.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "2.1.5",
"autoprefixer": "10.4.20",
"chalk": "5.3.0",
"happy-dom": "15.11.6",
"jest-preview": "0.3.1",
"knip": "5.37.2",
"lefthook": "1.8.4",
"npm-run-all": "4.1.5",
"postcss": "8.4.49",
"prisma": "6.0.1",
"prompt": "1.3.0",
"react-router-devtools": "1.0.5",
"tailwindcss": "3.4.15",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-icons-spritesheet": "2.2.1",
"vite-tsconfig-paths": "5.1.3",
"vitest": "2.1.5"
},
"packageManager": "[email protected]",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
},
"engines": {
"node": ">=22.11.0",
"pnpm": ">=9.14.2"
}
}