-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 868 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
34
35
{
"name": "my-turborepo",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:go": "cd apps/world && go test ./...",
"test:all": "bun run test && bun run test:go",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"prepare": "husky",
"e2e": "bun run --cwd apps/client e2e",
"e2e:open": "bun run --cwd apps/client e2e:open"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"turbo": "^2.7.1",
"typescript": "5.9.2"
},
"packageManager": "bun@1.1.0",
"engines": {
"node": ">=18"
}
}