-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 833 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
25
26
27
28
29
30
31
{
"name": "relayqr",
"version": "0.1.0",
"private": true,
"description": "Self-hosted dynamic QR code manager",
"author": "Mazha0309",
"license": "MIT",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently -n api,web -c blue,magenta \"npm run dev -w @relayqr/server\" \"npm run dev -w @relayqr/web\"",
"build": "npm run build -w @relayqr/web && npm run build -w @relayqr/server",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"start": "npm run start -w @relayqr/server"
},
"engines": {
"node": ">=22"
},
"allowScripts": {
"better-sqlite3@12.11.1": true,
"esbuild@0.28.1": true
},
"overrides": {
"pino-std-serializers": "7.0.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}