-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.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
{
"name": "eros",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --filter '@apps/*' --filter '@services/*' dev",
"build": "bun run --filter '@apps/*' --filter '@services/*' build",
"start": "bun run --filter '@apps/*' --filter '@services/*' start",
"typecheck": "bun run --filter '*' typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "bun run --filter './packages/*' test"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"typescript": "^5.9.3"
},
"workspaces": [
"packages/*",
"apps/*",
"services/*"
],
"catalog": {
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/node": "^22",
"tailwindcss": "^4",
"tw-animate-css": "^1",
"shadcn": "^4.4.0",
"@tailwindcss/postcss": "^4",
"next-themes": "^0.4.6",
"hono": "^4",
"drizzle-orm": "^0.45.2",
"drizzle-kit": "^0.31.10",
"bullmq": "^5.34.0",
"ioredis": "^5.4.2",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"zod": "^3.23.8",
"sonner": "^2.0.7",
"lucide-react": "^1.9.0"
}
}