forked from Hub-Assist/Hub-Assist
-
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) · 762 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "hubassist",
"version": "0.1.0",
"private": true,
"description": "HubAssist monorepo — backend, frontend, and Soroban contracts.",
"scripts": {
"install:all": "npm install --prefix backend && npm install --prefix frontend",
"dev:backend": "npm --prefix backend run start:dev",
"dev:frontend": "npm --prefix frontend run dev",
"build:backend": "npm --prefix backend run build",
"build:frontend": "npm --prefix frontend run build",
"test:backend": "npm --prefix backend test",
"test:frontend": "npm --prefix frontend test",
"deploy:frontend": "cd frontend && vercel deploy --prod",
"deploy:frontend:preview": "cd frontend && vercel deploy",
"validate-env": "node backend/scripts/validate-env.js"
}
}