generated from forge-42/base-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.11 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.11 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
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
{
"name": "@forge42/docs-template",
"version": "1.0.0",
"author": "forge-42",
"private": true,
"sideEffects": false,
"license": "MIT",
"type": "module",
"scripts": {
"execute": "tsx",
"clean": "git clean -fdX --exclude=\"!.env\"",
"script": "tsx scripts/setup.ts",
"build": "react-router build",
"predev": "pnpm run typegen",
"dev": "react-router dev",
"start": "NODE_ENV=production node ./build/server/index.js",
"pretest": "pnpm run typegen",
"test": "vitest run --browser.headless",
"test:ui": "vitest",
"test:cov": "vitest run --coverage --browser.headless",
"pretypecheck": "pnpm run typegen",
"typecheck": "tsc",
"validate": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run check:unused",
"check": "biome check .",
"check:fix": "biome check --fix .",
"precheck:unused": " pnpm run typegen",
"check:unused": "knip --max-issues 1",
"check:unused:fix": "knip --fix",
"typegen": "react-router typegen",
"generate:docs": "npx tsx scripts/generate-docs.ts --branch main",
"content-collections:build": "content-collections build"
},
"dependencies": {
"@content-collections/cli": "0.1.7",
"@content-collections/core": "0.10.0",
"@content-collections/mdx": "0.2.2",
"@content-collections/remix-vite": "0.2.2",
"@epic-web/client-hints": "1.3.5",
"@forge42/seo-tools": "1.3.0",
"@react-router/node": "7.2.0",
"clsx": "2.1.1",
"hono": "4.6.20",
"i18next": "24.2.2",
"i18next-browser-languagedetector": "8.0.2",
"i18next-http-backend": "3.0.2",
"isbot": "5.1.22",
"pretty-cache-header": "1.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "15.4.0",
"react-router": "7.2.0",
"react-router-hono-server": "2.10.0",
"rehype-slug": "6.0.0",
"remix-hono": "0.0.18",
"remix-i18next": "7.0.2",
"semver": "7.7.2",
"slug": "11.0.0",
"tailwind-merge": "3.0.1",
"zod": "4.0.17"
},
"devDependencies": {
"@babel/preset-typescript": "7.26.0",
"@biomejs/biome": "1.9.4",
"@dotenvx/dotenvx": "1.34.0",
"@react-router/dev": "7.2.0",
"@tailwindcss/typography": "0.5.16",
"@tailwindcss/vite": "4.0.9",
"@testing-library/react": "16.2.0",
"@types/node": "22.13.1",
"@types/prompt": "1.1.9",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/semver": "7.7.0",
"@types/slug": "5.0.9",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"chalk": "5.4.1",
"happy-dom": "16.8.1",
"knip": "5.43.6",
"lefthook": "1.10.10",
"playwright": "1.50.1",
"prompt": "1.3.0",
"react-router-devtools": "5.0.4",
"tailwindcss": "4.0.9",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vite": "6.2.0",
"vite-plugin-babel": "1.3.0",
"vite-plugin-icons-spritesheet": "3.0.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4",
"vitest-browser-react": "1.0.1"
},
"packageManager": "pnpm@10.18.0",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.34.3"
},
"engines": {
"node": ">=22.17.0",
"pnpm": ">=10.18.0"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "lefthook", "msw"]
}
}