-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.17 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 5.17 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "forge",
"version": "0.29.1",
"private": true,
"description": "Forge — a fast, minimalist, keyboard-driven project management platform with pluggable agents.",
"license": "MIT",
"scripts": {
"dev": "tsx scripts/dev.ts start",
"dev:local": "tsx scripts/dev.ts start",
"dev:app": "tsx scripts/dev.ts app",
"dev:services": "tsx scripts/dev.ts services",
"dev:refresh": "tsx scripts/dev.ts refresh",
"dev:reset": "tsx scripts/dev.ts reset",
"dev:scenario": "tsx scripts/dev.ts scenario",
"dev:live:unsafe": "bash scripts/dev-live.sh --no-workers",
"dev:live:workers:unsafe": "bash scripts/dev-live.sh --workers",
"dev:live:stack:unsafe": "bash scripts/dev-live-stack.sh",
"dev:live:lan:unsafe": "bash scripts/dev-live-stack.sh --lan",
"dev:isolated": "pnpm dev:app",
"dev:lifecycle": "./scripts/lifecycle-lab.sh",
"dev:live:host:unsafe": "DEV_HOST=0.0.0.0 bash scripts/dev-live.sh --no-workers",
"db:clone-prod": "pnpm dev:refresh",
"build": "./scripts/build-docs.sh && next build",
"build:app": "next build",
"build:docs": "./scripts/build-docs.sh",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"prisma:seed": "tsx prisma/seed.ts",
"seed:scenarios": "tsx scripts/seed-scenarios.ts",
"seed:lifecycle": "FORGE_LIFECYCLE_LAB=1 tsx scripts/seed-lifecycle-lab.ts",
"seed:agents": "tsx scripts/seed-agents.ts",
"prisma:studio": "prisma studio",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"ci:local": "pnpm lint && pnpm typecheck && pnpm test --no-file-parallelism && flock /tmp/forge-e2e.lock -c 'bash scripts/prepare-e2e-port.sh && E2E_FORCE_FRESH_SERVER=1 E2E_RESET_DB=1 E2E_FORCE_BUILD=1 pnpm exec playwright test --workers=1'",
"worker": "NODE_OPTIONS='--require ./scripts/ignore-server-only.cjs' tsx src/server/worker.ts",
"worker:live": "./scripts/worker-live.sh",
"worker:live:watch": "./scripts/worker-live.sh --watch",
"maintenance:github-links": "NODE_OPTIONS='--require ./scripts/ignore-server-only.cjs' tsx scripts/migrate-github-link-attachments.ts",
"maintenance:github-webhook": "NODE_OPTIONS='--require ./scripts/ignore-server-only.cjs' tsx scripts/configure-github-app-webhook.ts",
"format": "prettier --write .",
"docs:install": "pnpm --dir docs --ignore-workspace install",
"docs:dev": "pnpm --dir docs --ignore-workspace dev",
"docs:build": "pnpm --dir docs --ignore-workspace build",
"docs:preview": "pnpm --dir docs --ignore-workspace preview",
"dev:all": "./scripts/dev-all.sh",
"build:cli": "tsc -p tools/forge-cli",
"forge": "node tools/forge-cli/dist/index.js",
"changelog": "tsx tools/scripts/changelog-scaffold.ts",
"e2e": "flock /tmp/forge-e2e.lock -c 'bash scripts/prepare-e2e-port.sh && E2E_FORCE_FRESH_SERVER=1 E2E_RESET_DB=1 E2E_FORCE_BUILD=1 playwright test'",
"e2e:web": "bash scripts/e2e-web.sh",
"test:lifecycle": "playwright test --config=playwright.lifecycle.config.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@aws-sdk/client-s3": "^3.1032.0",
"@aws-sdk/s3-request-presigner": "^3.1032.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^6.1.0",
"@tanstack/react-query": "^5.62.7",
"@trpc/client": "^11.0.0-rc.660",
"@trpc/next": "^11.0.0-rc.660",
"@trpc/react-query": "^11.0.0-rc.660",
"@trpc/server": "^11.0.0-rc.660",
"bullmq": "^5.34.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"diff": "^8.0.4",
"framer-motion": "^12.40.0",
"ioredis": "^5.4.2",
"jose": "^5.9.6",
"katex": "^0.16.47",
"lucide-react": "^0.468.0",
"mermaid": "^11.15.0",
"nanoid": "^5.0.9",
"next": "^15.1.3",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.4",
"nodemailer": "^6.10.1",
"openai": "^6.34.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.1",
"roughjs": "^4.6.6",
"server-only": "^0.0.1",
"sonner": "^1.7.1",
"superjson": "^2.2.2",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"web-push": "^3.6.7",
"ws": "^8.18.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.49.1",
"@types/katex": "^0.16.8",
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.24",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.5.13",
"autoprefixer": "^10.4.20",
"dotenv": "^17.4.2",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"postcss": "^8.5.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.33.0"
}