-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
14 lines (14 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
14 lines (14 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"name": "fractera-light",
"version": "1.0.0",
"private": true,
"description": "Self-hosted AI development workspace",
"scripts": {
"dev": "concurrently \"npm run dev --prefix app\" \"npm run dev --prefix services/auth\" \"node bridges/platforms/server.js\" \"npm run dev --prefix bridges/app\" \"node services/data/server.src.js\"",
"start": "concurrently \"npm run start --prefix app\" \"npm run start --prefix services/auth\" \"node bridges/platforms/server.js\" \"npm run start --prefix bridges/app\" \"node services/data/server.js\"",
"install:all": "npm install --prefix app && npm install --prefix services/auth && npm install --prefix bridges/platforms && npm install --prefix bridges/app && npm install --prefix services/data"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}