-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 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
{
"private": true,
"name": "openveda",
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:prod": "turbo build --filter=web",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"supabase:start": "npx supabase start",
"supabase:stop": "npx supabase stop",
"supabase:status": "npx supabase status",
"supabase:reset": "npx supabase db reset",
"dev:scoring": "cd apps/scoring && uvicorn app.main:app --reload --port 8000",
"dev:ai": "cd apps/ai && uvicorn app.main:app --reload --port 8001"
},
"devDependencies": {
"turbo": "latest",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.5.14"
}
}