-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.26 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
{
"name": "tedi-stack",
"author": "Aaron Koivunen <[email protected]>",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"1password": "op run --no-masking --env-file .env.op --",
"dev": "NODE_ENV=development bun --bun vite",
"dev:op": "NODE_ENV=development OP_ENV=development bun --bun 1password vite",
"build": "OP_ENV=development bun 1password react-router build",
"start": "NODE_ENV=production bun 1password bun ./build/server/index.js",
"start:dev": "NODE_ENV=production OP_ENV=development bun 1password bun ./build/server/index.js",
"typegen": "react-router typegen",
"extract:strings": "i18next --config i18next-parser.config.js",
"validate": "bun run check && bun run typecheck && bun run",
"check": "biome check .",
"check:fix": "biome check --fix .",
"typecheck": "react-router typegen && tsc",
"format": "biome format ./ --write",
"lint": "biome lint ./ --write",
"bump": "bunx npm-check-updates --packageManager bun --interactive --format group",
"nuke": "rimraf node_modules bun.lock && bun install",
"icon": "bunx @sly-cli/sly add lucide-icons"
},
"dependencies": {
"@conform-to/react": "^1.6.1",
"@conform-to/zod": "^1.6.1",
"@epic-web/cachified": "^5.5.2",
"@epic-web/client-hints": "^1.3.5",
"@epic-web/config": "^1.21.0",
"@epic-web/invariant": "^1.0.0",
"@forge42/seo-tools": "^1.4.2",
"@nichtsam/helmet": "^0.3.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-router/node": "^7.6.2",
"@sentry/react-router": "9.28.0",
"@tailwindcss/vite": "^4.1.8",
"@tusbar/cache-control": "^1.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono-rate-limiter": "^0.4.2",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-http-backend": "^3.0.2",
"is-ip": "^5.0.1",
"isbot": "^5.1.28",
"posthog-js": "^1.250.1",
"posthog-node": "^5.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^15.5.2",
"react-router": "^7.6.2",
"react-router-devtools": "^5.0.6",
"react-router-dom": "^7.6.2",
"react-router-hono-server": "^2.13.0",
"remix-hono": "^0.0.18",
"remix-i18next": "^7.2.1",
"remix-utils": "^8.7.0",
"source-map-support": "^0.5.21",
"spin-delay": "^2.0.1",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.8",
"tailwindcss-radix": "^4.0.2",
"tw-animate-css": "^1.3.4",
"vite-plugin-icons-spritesheet": "^3.0.1",
"zod": "^3.25.57"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@react-router/dev": "^7.6.2",
"@sly-cli/sly": "^2.1.1",
"@types/bun": "^1.2.15",
"@types/node": "^24.0.0",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"@types/source-map-support": "^0.5.10",
"i18next-parser": "^9.3.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@biomejs/biome", "@sentry/cli", "@tailwindcss/oxide", "core-js", "esbuild", "unrs-resolver"]
}