forked from tashfeenahmed/freellmapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "freellmapi",
"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 test -w client --if-present",
"build": "npm run build -w server && npm run build -w client",
"build:server": "npm run build -w server",
"desktop:dev": "npm run build -w client && npm --prefix desktop run dev",
"desktop:dist": "npm run build -w client && npm --prefix desktop run dist",
"desktop:dist:win": "npm run build -w client && npm --prefix desktop run dist:win"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}