-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 850 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 850 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
{
"name": "bestofjs",
"version": "1.0.0",
"description": "Best of JS monorepo",
"scripts": {
"backup": "NODE_ENV=production bun run ./apps/backend/src/backup/make-backup.ts",
"build": "turbo run build -F=!legacy",
"lint": "turbo run lint -F=!legacy",
"typecheck": "turbo run typecheck -F=!legacy",
"test": "pnpm -F web test",
"test:e2e": "pnpm -F web test:e2e",
"test:e2e:install": "pnpm -F web exec playwright install"
},
"author": "Michael Rambeau",
"license": "MIT",
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"dotenv-cli": "catalog:",
"next-devtools-mcp": "^0.3.3",
"shadcn": "^3.5.0",
"tsx": "catalog:",
"turbo": "^2.5.6",
"typescript": "catalog:"
},
"private": true
}