-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
28
29
30
{
"name": "synthra-monorepo",
"version": "1.0.0",
"description": "AI Browser & Learning Agent - Chrome Extension + Backend",
"private": true,
"workspaces": [
"extension",
"backend",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:extension\" \"npm run dev:backend\"",
"dev:extension": "cd extension && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:shared && npm run build:extension && npm run build:backend",
"build:shared": "cd shared && npm run build",
"build:extension": "cd extension && npm run build",
"build:backend": "cd backend && npm run build",
"install:all": "npm install && npm run install:extension && npm run install:backend && npm run install:shared",
"install:extension": "cd extension && npm install",
"install:backend": "cd backend && pip install -r requirements.txt",
"install:shared": "cd shared && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}