-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "openforge",
"version": "0.1.0",
"private": true,
"description": "AI-powered workspace for understanding repositories and contributing to open source.",
"packageManager": "npm@10.9.0",
"scripts": {
"install:all": "npm install --prefix shared && npm install --prefix backend && npm install --prefix frontend",
"dev:backend": "npm run dev --prefix backend",
"dev:frontend": "npm run build --prefix shared && npm run dev --prefix frontend",
"build:shared": "npm run build --prefix shared",
"build:backend": "npm run build --prefix backend",
"build:frontend": "npm run build --prefix shared && npm run build --prefix frontend",
"build": "npm run build:backend && npm run build:frontend",
"typecheck": "npm run typecheck --prefix shared && npm run typecheck --prefix backend && npm run typecheck --prefix frontend",
"test": "npm run test --prefix backend && npm run test --prefix frontend"
}
}