-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 982 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
{
"name": "temelj",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean --parallel",
"dev": "turbo dev --continue",
"dev:packages": "turbo dev --continue --filter './packages/*'",
"typecheck": "turbo run typecheck --parallel",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix-dangerously",
"test": "turbo run test",
"docker:up": "docker compose -f ./infrastructure/docker-compose.yaml up -d --build",
"docker:down": "docker compose -f ./infrastructure/docker-compose.yaml down"
},
"devDependencies": {
"@types/node": "26.1.1",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"shx": "^0.4.0",
"tsx": "^4.23.1",
"turbo": "^2.10.6",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.17.0"
}