-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 1017 Bytes
/
package.json
File metadata and controls
30 lines (29 loc) · 1017 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
{
"name": "skillproof-monorepo",
"version": "0.1.0",
"private": true,
"description": "AI + Blockchain Hiring Trust Platform - Monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:ai\"",
"dev:frontend": "cd packages/frontend && npm run dev",
"dev:backend": "cd packages/backend && npm run start:dev",
"dev:ai": "cd packages/ai-service && python -m uvicorn main:app --reload",
"dev:no-ai": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "npm run build --workspaces",
"build:frontend": "cd packages/frontend && npm run build",
"build:backend": "cd packages/backend && npm run build",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces",
"install:all": "npm install && npm install --workspaces"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}