-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.28 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
55
{
"name": "rootcell",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p src/spy/ui/tsconfig.json",
"lint": "eslint \"src/**/*.{ts,tsx,js,mjs,cjs}\" eslint.config.ts vitest.config.ts",
"test": "bun test src/spy --timeout 10000 && vitest --project unit --run",
"test:spy": "bun test src/spy --timeout 10000",
"dev:spy-ui": "vite --config src/spy/ui/vite.config.ts --host 127.0.0.1",
"build:spy-service": "bun build src/bin/spy-service.ts --target=bun --format=esm --outfile=dist/spy-service.js --external=bun:sqlite",
"build:spy-ui": "vite build --config src/spy/ui/vite.config.ts",
"build:spy": "bun run build:spy-service && bun run build:spy-ui",
"test:spy-ui:unit": "bun test src/spy/ui/src --timeout 10000",
"test:spy-ui:e2e": "bun run build:spy-ui && playwright test -c src/spy/ui/playwright.config.ts",
"test:spy-ui": "bun run test:spy-ui:unit && bun run test:spy-ui:e2e",
"test:unit:vitest": "vitest --project unit --run",
"test:integration": "vitest --project integration --run",
"test:integration:lima-smoke": "vitest --project integration --run src/rootcell/integration/providers/macos-lima-user-v2/cli-smoke.integration.test.ts",
"test:integration:clean": "./test --clean",
"test:integration:teardown": "./test --teardown",
"test:all": "bun run test && bun run test:integration"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@types/bun": "1.3.14",
"@types/node": "25.7.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/yargs": "17.0.35",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "10.3.0",
"jiti": "2.7.0",
"typescript": "5.9.3",
"typescript-eslint": "8.59.3",
"vitest": "^4.0.0"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.1050.0",
"@aws-sdk/client-s3": "^3.1050.0",
"@aws-sdk/client-secrets-manager": "^3.1050.0",
"@aws-sdk/client-sts": "^3.1050.0",
"@aws-sdk/credential-providers": "^3.1050.0",
"@tanstack/react-virtual": "^3.13.25",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"yargs": "18.0.0",
"zod": "^4.4.3"
}
}