-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 798 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 798 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
{
"name": "lumen-health",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"setup": "node packages/config/bootstrap.cjs",
"setup:seed-demo": "node packages/config/bootstrap.cjs --seed-demo",
"check:architecture": "npm run check:architecture -w packages/config",
"check:env": "node packages/config/bootstrap.cjs",
"check:boundaries": "npm run check:boundaries -w packages/config",
"check:boundaries:fixtures": "npm run check:boundaries:fixtures -w packages/config",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint"
},
"devDependencies": {
"turbo": "latest",
"typescript": "latest",
"@types/node": "latest"
}
}