forked from CapSoftware/Cap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.45 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
56
57
58
59
60
61
62
63
{
"type": "module",
"scripts": {
"build": "dotenv -e .env -- turbo run build",
"build:web": "turbo run build:web",
"build:web:docker": "pnpm run --filter=@cap/web build:docker",
"cap-setup": "dotenv -e .env -- node scripts/setup.js",
"analytics:migrate-dub": "dotenv -e .env -- node scripts/analytics/migrate-dub-to-tinybird.js --dry-run",
"analytics:migrate-dub:apply": "dotenv -e .env -- node scripts/analytics/migrate-dub-to-tinybird.js --apply",
"analytics:setup": "dotenv -e .env -- node scripts/analytics/setup-analytics.js",
"analytics:check": "dotenv -e .env -- node scripts/analytics/check-analytics.js",
"analytics:delete-all": "dotenv -e .env -- node scripts/analytics/delete-all-data.js",
"analytics:populate-test": "dotenv -e .env -- node scripts/analytics/populate-test-data.js",
"db:generate": "dotenv -e .env -- pnpm --filter @cap/database db:generate",
"db:push": "dotenv -e .env -- pnpm --filter @cap/database db:push",
"db:studio": "dotenv -e .env -- pnpm --filter @cap/database db:studio",
"dev": "(pnpm run docker:up > /dev/null &) && sleep 5 && trap 'pnpm run docker:stop' EXIT && dotenv -e .env -- turbo run dev --env-mode=loose --ui tui",
"dev:desktop": "pnpm run --filter=@cap/desktop dev",
"dev:manual": "pnpm run docker:up && trap 'pnpm run docker:stop' EXIT && dotenv -e .env -- turbo run dev --filter=!@cap/storybook --no-cache --concurrency 1",
"dev:web": "pnpm dev --filter=!@cap/desktop",
"dev:windows": "start /b cmd /c \"pnpm run docker:up > nul\" && timeout /t 5 /nobreak > nul && dotenv -e .env -- turbo run dev --env-mode=loose --ui tui",
"docker:clean": "turbo run docker:clean",
"docker:stop": "turbo run docker:stop",
"docker:up": "turbo run docker:up",
"format": "pnpm exec biome check --write",
"lint": "pnpm exec biome lint",
"tauri:build": "dotenv -e .env -- pnpm --dir apps/desktop tauri build --verbose",
"typecheck": "pnpm tsc -b",
"test": "turbo run test",
"test:web": "pnpm --filter=@cap/web test",
"test:discover": "pnpm with-env cargo run -p cap-test -- discover",
"test:matrix": "pnpm with-env cargo run -p cap-test -- matrix",
"test:matrix:quick": "pnpm with-env cargo run -p cap-test -- matrix --quick",
"test:matrix:exhaustive": "pnpm with-env cargo run -p cap-test -- matrix --exhaustive",
"test:synthetic": "pnpm with-env cargo run -p cap-test -- synthetic",
"test:benchmark": "pnpm with-env cargo run -p cap-test -- benchmark",
"test:suite:recording": "pnpm with-env cargo run -p cap-test -- suite recording",
"test:suite:encoding": "pnpm with-env cargo run -p cap-test -- suite encoding",
"test:suite:playback": "pnpm with-env cargo run -p cap-test -- suite playback",
"test:suite:sync": "pnpm with-env cargo run -p cap-test -- suite sync",
"web": "pnpm --filter=@cap/web",
"env-setup": "node scripts/env-cli.js",
"check-tauri-versions": "node scripts/check-tauri-plugin-versions.js",
"clean": "find . -name node_modules -o -name .next -o -name .output -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"lgtm-otel": "docker run -p 3010:3000 -p 4317:4317 -p 4318:4318 --rm -it docker.io/grafana/otel-lgtm",
"with-env": "dotenv -e .env --"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@clack/prompts": "^0.10.0",
"@effect/language-service": "^0.44.0",
"dotenv-cli": "latest",
"mysql2": "^3.15.2",
"tsdown": "^0.15.6",
"turbo": "^2.3.4",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.5.2",
"name": "cap",
"engines": {
"node": ">=20"
}
}