-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 905 Bytes
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
{
"name": "forge",
"version": "0.1.0",
"private": true,
"description": "Sovereign CI/CD platform - built from first principles",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"deploy": "wrangler pages deploy .next/standalone --project-name=forge"
},
"dependencies": {
"next": "~15.1.0",
"react": "~19.0.0",
"react-dom": "~19.0.0",
"@prisma/client": "~6.2.0",
"@prisma/adapter-libsql": "~6.2.0",
"@libsql/client": "~0.8.0",
"zod": "~3.24.0"
},
"devDependencies": {
"typescript": "~5.7.0",
"@types/node": "~22.10.0",
"@types/react": "~19.0.0",
"@types/react-dom": "~19.0.0",
"prisma": "~6.2.0",
"eslint": "~9.17.0",
"wrangler": "~3.99.0",
"@opennextjs/cloudflare": "^1.20.2"
},
"engines": {
"node": ">=20.0.0"
}
}