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
32 lines (32 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.31 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
31
32
{
"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",
"test:migrations": "npm run test:migrations -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",
"db:migration:up": "npm run db:migration:up -w server",
"db:migration:down": "npm run db:migration:down -w server",
"db:migration:fresh": "npm run db:migration:fresh -w server",
"db:migration:status": "npm run db:migration:status -w server",
"db:migration:create": "npm run db:migration:create -w server"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=20.18.0 <25.0.0",
"npm": ">=10.0.0"
}
}