-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "okta-thread6-monorepo",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@okta/okta-sdk-nodejs": "^7.1.0",
"@types/express": "4.17.21",
"@types/express-session": "1.17.10",
"@types/node": "^20.19.19",
"@types/prompts": "^2.4.9",
"chalk": "^5.3.0",
"concurrently": "^9.2.1",
"ora": "^6.3.1",
"prompts": "^2.4.2",
"tsx": "^4.7.0",
"typescript": "^5.9.3"
},
"description": "This is a TypeScript Node.js monorepo managed with pnpm workspaces.",
"main": "index.js",
"scripts": {
"init:prisma": "pnpm --filter todo0 run generate:client && pnpm --filter todo0 run migrate:dev",
"build": "pnpm -r run build",
"start:todo0": "pnpm --filter todo0 run start",
"start:mcp": "pnpm --filter todo0 run start:mcp",
"start:agent0": "pnpm --filter agent0 run start",
"start:all": "concurrently -n \"MCP,Todo0,Agent\" -c \"cyan,magenta,green\" \"pnpm run start:mcp\" \"pnpm run start:todo0\" \"pnpm run start:agent0\"",
"dev": "pnpm run start:all",
"bootstrap:okta": "tsx scripts/bootstrap-okta-tenant.ts",
"validate:okta": "tsx scripts/validate-okta-config.ts",
"rollback:okta": "tsx scripts/rollback-okta-config.ts",
"typecheck:scripts": "tsc --project scripts/tsconfig.json --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.12.2",
"jose": "^6.1.0"
},
"pnpm": {
"overrides": {
"body-parser": ">=2.2.1",
"qs": ">=6.14.0"
},
"ignoredBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
]
}
}