-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 988 Bytes
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
{
"name": "retro-boilerplate",
"version": "0.3.6",
"private": true,
"engines": {
"node": ">=24 <25",
"pnpm": ">=11.21.0 <12"
},
"packageManager": "pnpm@11.21.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"boundaries": "turbo boundaries",
"sync:retro": "node .github/scripts/retro-sync.mjs",
"ui:update": "pnpm dlx shadcn@latest add --all --overwrite -c packages/ui",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:e2e": "turbo run test:e2e",
"verify": "pnpm lint && pnpm check-types && pnpm test && pnpm build"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"@types/node": "^26.5.1",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"turbo": "^2.10.12",
"typescript": "7.0.2"
}
}