-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.44 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.44 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
{
"name": "tonys-chips",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:local": "npx tsx ci/main.ts build-local all",
"docker:up": "docker compose up",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:test:e2e": "npx tsx ci/main.ts test-e2e",
"ci:calver": "npx tsx ci/main.ts calver",
"ci:check-postgres": "npx tsx ci/main.ts check-postgres",
"ci:check-infraflags": "npx tsx ci/main.ts check-infraflags",
"ci:check-policy": "npx tsx ci/main.ts check-policy",
"ci:manage-image-lifecycle": "npx tsx ci/main.ts manage-image-lifecycle",
"ci:manage-stack-lifecycle": "npx tsx ci/main.ts manage-stack-lifecycle",
"ci:post-to-pr": "npx tsx ci/main.ts post-to-pr",
"test": "npm test --workspace=@chips/api",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"keywords": [],
"author": "support@systeminit.com",
"license": "Apache-2.0",
"description": "Tony's World of Chips - E-commerce storefront",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.20",
"js-yaml": "^4.1.0",
"system-initiative-api-client": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"playwright": "^1.56.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}