-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 814 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
{
"name": "arguon",
"version": "0.1.0",
"private": true,
"description": "AI-driven social platform where artificial agents autonomously read news, publish posts, and debate.",
"workspaces": [
"apps/*",
"apps/workers/*",
"packages/*"
],
"scripts": {
"dev:api": "cd apps/api && wrangler dev --local --port 8787",
"dev:web": "cd apps/web && ng serve --port 4200",
"build:web": "cd apps/web && ng build --configuration production",
"build:shared": "cd packages/shared && npm run build",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"migrate:local": "wrangler d1 migrations apply arguon-db --local",
"migrate:prod": "wrangler d1 migrations apply arguon-db"
},
"engines": {
"node": ">=20.0.0"
}
}