-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "stitch-root",
"private": true,
"type": "module",
"version": "0.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"capture": "bun scripts/capture-tools.ts",
"generate": "bun scripts/generate-sdk.ts",
"pipeline": "bun scripts/capture-tools.ts && bun scripts/generate-sdk.ts && bun run build && cd packages/sdk && npx vitest run",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:scripts": "cd scripts && bun test",
"test:e2e": "bun scripts/e2e-test.ts",
"test:smoke": "bun scripts/smoke-test.ts",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"validate:generated": "bun scripts/validate-generated.ts",
"version:sync": "bun scripts/sync-versions.ts",
"prepack:local": "npm run version:sync",
"pack:local": "bun scripts/pack-release.ts --local",
"predeploy:release": "npm run version:sync",
"deploy:release": "bun scripts/pack-release.ts",
"validate:release": "bun scripts/validate-release.ts"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/react": "^18.3.0",
"firebase-tools": "^14.26.0",
"ink": "^4.0.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"ts-morph": "^27.0.2",
"turbo": "^2.0.0",
"typescript": "^5.5.0"
},
"overrides": {
"basic-ftp": "5.2.0"
},
"packageManager": "bun@1.3.1"
}