-
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) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 876 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": "aws-nav-assistant",
"version": "1.0.0",
"description": "AI-powered AWS navigation assistant browser extension",
"private": true,
"workspaces": [
"extension",
"backend",
"shared"
],
"scripts": {
"install:all": "npm install && cd extension && npm install && cd ../backend && npm install && cd ../shared && npm install",
"build:shared": "cd shared && npm run build",
"build:extension": "npm run build:shared && cd extension && npm run build",
"build:backend": "cd backend && npm run build",
"dev:extension": "cd extension && npm run watch",
"dev:backend": "cd backend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:extension\"",
"type-check": "cd extension && npm run type-check && cd ../backend && npm run type-check"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}