-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "tutorstr",
"private": true,
"workspaces": [
"frontend"
],
"scripts": {
"dev:client": "npm --workspace frontend run dev",
"dev:relay": "cd relay && go run main.go",
"dev:blossom": "cd relay && BLOSSOM_DATA_DIR=./blobs go run ./cmd/blossom",
"dev:ai": "cd ai-assistant && npm run dev",
"dev": "concurrently --kill-others -n \"VITE,KHATRU,BLOSSOM,AI\" -c \"cyan,magenta,green,yellow\" \"npm:dev:client\" \"npm:dev:relay\" \"npm:dev:blossom\" \"npm:dev:ai\"",
"build": "npm --workspace frontend run build",
"preview": "npm --workspace frontend run preview",
"test": "npm --workspace frontend run test",
"depmap": "node scripts/generate-dependency-map.mjs"
},
"devDependencies": {
"concurrently": "^9.1.2",
"madge": "^8.0.0"
}
}