-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
{
"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 --browser.headless",
"test:ui": "vitest",
"test:cov": "vitest run --coverage --browser.headless",
"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"
},
"dependencies": {
"@forge42/seo-tools": "1.3.0",
"@react-router/node": "7.1.2",
"clsx": "2.1.1",
"hono": "4.6.12",
"i18next": "24.2.1",
"i18next-browser-languagedetector": "8.0.0",
"i18next-fetch-backend": "6.0.0",
"isbot": "5.1.17",
"pretty-cache-header": "1.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "15.1.1",
"react-router": "7.1.2",
"react-router-hono-server": "2.6.2",
"remix-hono": "0.0.16",
"remix-i18next": "7.0.2",
"tailwind-merge": "2.5.4",
"zod": "3.23.8"
},
"devDependencies": {
"@babel/preset-typescript": "7.26.0",
"@biomejs/biome": "1.9.4",
"@dotenvx/dotenvx": "1.24.5",
"@react-router/dev": "7.1.2",
"@react-router/fs-routes": "7.1.2",
"@tailwindcss/vite": "4.0.0",
"@testing-library/react": "16.2.0",
"@types/node": "22.9.1",
"@types/prompt": "1.1.9",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.1",
"@vitest/browser": "3.0.3",
"@vitest/coverage-v8": "3.0.3",
"@vitest/ui": "3.0.3",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"chalk": "5.3.0",
"happy-dom": "15.11.6",
"knip": "5.39.4",
"lefthook": "1.8.4",
"playwright": "1.49.0",
"prompt": "1.3.0",
"react-router-devtools": "1.1.0",
"tailwindcss": "4.0.0",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vite": "6.0.11",
"vite-plugin-babel": "1.3.0",
"vite-plugin-icons-spritesheet": "2.2.1",
"vite-tsconfig-paths": "5.1.3",
"vitest": "3.0.3",
"vitest-browser-react": "0.0.4"
},
"packageManager": "[email protected]",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.31.0"
},
"engines": {
"node": ">=22.11.0",
"pnpm": ">=9.14.2"
}
}