-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.18 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
33
34
35
{
"name": "rayverify",
"version": "0.1.0",
"private": true,
"description": "RayVerify™ — Government-grade fraud detection & identity verification for Medicaid, HCBS, and personal care programs.",
"license": "UNLICENSED",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"db:up": "docker compose up -d postgres redis",
"db:migrate": "npm run prisma:migrate --workspace packages/backend",
"db:seed": "npm run prisma:seed --workspace packages/backend",
"dev:infra": "docker compose up -d"
},
"overrides": {
"@nestjs/common": "11.1.26",
"@nestjs/core": "11.1.26",
"@nestjs/platform-express": "11.1.26"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}