-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "codewright",
"private": true,
"packageManager": "pnpm@10.33.3",
"scripts": {
"build": "turbo run build",
"generate": "turbo run generate",
"codegen": "turbo run codegen",
"check-types": "turbo run check-types",
"dev": "mprocs",
"dev:apps": "turbo run dev",
"clean": "turbo run clean",
"update:all": "pnpm install && pnpm generate",
"preinstall": "npx only-allow pnpm",
"format-fix": "biome format --write",
"lint-fix": "biome lint --write",
"prepare": "husky",
"lint-staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:up": "docker-compose up -d",
"docker:up:dev": "docker-compose up -d postgres temporal-postgres temporal temporal-ui",
"docker:down": "docker-compose down",
"sandbox:build-base": "bash scripts/build-sandbox-base.sh"
},
"engines": {
"node": ">=24.14.1",
"pnpm": ">=10.33.0"
},
"dependencies": {
"pino": "^10.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"mprocs": "^0.9.6",
"pino-pretty": "^13.1.3",
"turbo": "^2.9.18",
"typescript": "^6.0.3"
}
}