-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.03 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
{
"name": "next-forge",
"version": "2.21.11",
"bin": {
"next-forge": "scripts/init.mjs"
},
"files": [
"scripts/init.mjs"
],
"scripts": {
"web": "turbo run web#dev --filter=web...",
"app": "turbo run app#dev --filter=app...",
"email": "turbo run dev --filter=email...",
"studio": "turbo run dev --filter=studio...",
"storybook": "turbo run dev --filter=storybook...",
"build": "turbo build",
"dev": "turbo dev",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker && bun install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"migrate": "cd packages/database && bun drizzle-kit generate && bun migrate.ts && bun drizzle-kit push",
"clean": "git clean -xdf node_modules",
"docker:dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker:build": "docker compose -f docker-compose.yml build",
"docker:down": "docker compose down",
"docker:clean": "docker compose down -v"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.3.0",
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "2.2.4",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.5.8",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"turbo": "^2.5.8",
"typescript": "^5.9.2",
"ultracite": "^5.4.5",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.20",
"dependencies": {
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"commander": "^14.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@biomejs/biome",
"@clerk/shared",
"@prisma/client",
"@sentry/cli",
"better-sqlite3",
"core-js",
"core-js-pure",
"es5-ext",
"esbuild",
"msgpackr-extract",
"sharp",
"workerd"
]
}