-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 955 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
{
"name": "rust-sentinel",
"version": "0.12.5",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n api,web -c auto npm:dev:api npm:dev:web",
"dev:api": "npm run dev -w @rust-sentinel/api",
"dev:web": "npm run dev -w @rust-sentinel/web",
"build": "npm run build -w @rust-sentinel/domain && npm run build -w @rust-sentinel/api && npm run build -w @rust-sentinel/web",
"build:pairing": "dotnet build tools/pairing-helper/RustSentinel.PairingHelper.csproj -c Release",
"test": "npm run build -w @rust-sentinel/domain && npm run test -w @rust-sentinel/domain && npm run test -w @rust-sentinel/api",
"lint": "npm run lint -w @rust-sentinel/web",
"start": "npm run start -w @rust-sentinel/api"
},
"devDependencies": {
"concurrently": "^9.2.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"overrides": {
"ret": "0.5.0"
}
}