forked from tashfeenahmed/freellmapi
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 677 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "api-gateway",
"bin": {
"api": "./scripts/cli.mjs"
},
"private": true,
"workspaces": [
"shared",
"server",
"client"
],
"scripts": {
"dev": "concurrently --kill-others-on-fail --names server,client \"npm run dev -w server\" \"npm run dev -w client\"",
"dev:lan": "concurrently --kill-others-on-fail --names server,client \"npm run dev -w server\" \"npm run dev -w client -- --host\"",
"test": "npm run test -w server && npm run typecheck -w client",
"build": "npm run build -w server && npm run build -w client",
"build:server": "npm run build -w server"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}