-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 950 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "CopilotKit Angular Demo",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --filter='server' --filter='frontend' --filter='agent'",
"dev:agent": "cd apps/agent && npx @langchain/langgraph-cli dev --port 8123 --no-browser",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage"
},
"devDependencies": {
"prettier": "^3.6.0",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
],
"allowedVersions": {
"react": "*",
"react-dom": "*"
}
}
}
}