-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.23 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.23 KB
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
{
"name": "codeabyss-ai-ide",
"version": "0.1.0",
"private": true,
"description": "CodeAbyss: zero-budget browser AI Cloud IDE and autonomous coding agent platform.",
"workspaces": [
"apps/web",
"services/api-node"
],
"scripts": {
"dev": "concurrently -n web,node,python -c cyan,magenta,green \"npm run dev -w apps/web\" \"npm run dev -w services/api-node\" \"python -m uvicorn main:app --app-dir services/api-python --host 127.0.0.1 --port 8788 --reload --reload-dir services/api-python\"",
"dev:web": "npm run dev -w apps/web",
"dev:node": "npm run dev -w services/api-node",
"dev:python": "python -m uvicorn main:app --app-dir services/api-python --host 127.0.0.1 --port 8788 --reload --reload-dir services/api-python",
"build": "npm run build -w apps/web && npm run build -w services/api-node",
"lint": "npm run lint -w apps/web && npm run lint -w services/api-node",
"smoke": "node scripts/smoke-test.mjs",
"browser-check": "node scripts/browser-check.mjs",
"start": "concurrently -n web,node -c cyan,magenta \"npm run start -w apps/web\" \"npm run start -w services/api-node\""
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"dependencies": {
"nodemailer": "^7.0.13"
}
}