-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 768 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
{
"name": "demo-payroll",
"version": "1.0.0",
"private": true,
"packageManager": "bun@1.3.10",
"scripts": {
"bootstrap": "bun install --frozen-lockfile",
"dev": "bunx turbo run dev",
"build": "bunx turbo run build",
"lint": "bunx turbo run lint",
"typecheck": "bunx turbo run typecheck",
"test": "bunx turbo run test",
"test:e2e": "bun run --cwd apps/web test:e2e",
"verify": "bun run lint && bun run typecheck && bun run test && bun run build"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@playwright/test": "^1.58.2",
"@biomejs/biome": "^2.4.7",
"playwright": "^1.58.2",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {}
}