-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 980 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 980 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
{
"name": "sift",
"version": "0.1.0",
"private": true,
"description": "Sift — local clinical intelligence (Tauri + Node)",
"scripts": {
"start": "node sift.mjs run",
"debug": "node sift.mjs debug",
"check": "node sift.mjs check",
"deps": "node sift.mjs deps",
"stop": "node sift.mjs stop",
"dev": "concurrently -k -n backend,ui,tauri -c blue,green,magenta \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\" \"tauri dev\"",
"build": "npm run build --prefix frontend && npm run build --prefix backend && cross-env CI=false npx tauri build",
"tauri": "tauri",
"lint:backend": "cd backend && npx tsc --noEmit",
"test": "npm run test --prefix backend && npm run test --prefix frontend",
"test:backend": "npm run test --prefix backend",
"test:frontend": "npm run test --prefix frontend"
},
"devDependencies": {
"@tauri-apps/cli": "^2.2.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3"
}
}