28 lines
1.2 KiB
JSON
28 lines
1.2 KiB
JSON
{
|
|
"name": "unfi-agent",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "UDM Pro SE Security Copilot",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run -w @unfi/contracts build && npm run -w @unfi/api build && npm run -w @unfi/worker build && npm run -w @unfi/web build",
|
|
"dev": "concurrently \"npm run -w @unfi/contracts dev\" \"npm run dev:api\" \"npm run dev:worker\" \"npm run dev:web\"",
|
|
"dev:api": "npm run -w @unfi/api dev",
|
|
"dev:worker": "npm run -w @unfi/worker dev",
|
|
"dev:web": "npm run -w @unfi/web dev",
|
|
"lint": "npm run -w @unfi/contracts lint && npm run -w @unfi/api lint && npm run -w @unfi/worker lint && npm run -w @unfi/web lint",
|
|
"test": "npm run -w @unfi/contracts test && npm run -w @unfi/api test && npm run -w @unfi/worker test && npm run -w @unfi/web test",
|
|
"typecheck": "npm run -w @unfi/contracts typecheck && npm run -w @unfi/contracts build && npm run -w @unfi/api typecheck && npm run -w @unfi/worker typecheck && npm run -w @unfi/web typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|