-
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) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "agent-identity",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sidclawhq/platform"
},
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:api": "cd apps/api && npm test",
"test:shared": "cd packages/shared && npm test",
"test:ci": "docker compose -f docker-compose.test.yml up -d && turbo test && docker compose -f docker-compose.test.yml down",
"test:e2e": "vitest run --config tests/e2e/vitest.config.ts",
"test:browser": "playwright test",
"test:browser:headed": "playwright test --headed",
"test:browser:debug": "playwright test --debug",
"demo": "tsx scripts/demo.ts",
"prepare": "lefthook install"
},
"packageManager": "[email protected]",
"devDependencies": {
"@playwright/test": "^1.58.2",
"lefthook": "^2.1.4",
"turbo": "^2",
"typescript": "^5.9.3"
}
}