-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
42
43
44
45
46
47
{
"name": "durably-monorepo",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@10.26.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:node": "turbo run test:node --filter=@coji/durably",
"test:browser": "turbo run test:browser --filter=@coji/durably",
"test:react": "turbo run test:react --filter=@coji/durably",
"dev:node": "turbo run dev --filter=example-node",
"dev:browser": "turbo run dev --filter=example-browser",
"dev:react": "turbo run dev --filter=example-react",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "pnpm -r lint:fix",
"format": "turbo run format",
"format:fix": "pnpm -r format:fix",
"validate": "turbo run format lint typecheck test",
"db:up": "docker compose -f docker-compose.postgres.yml up -d",
"db:down": "docker compose -f docker-compose.postgres.yml down"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "4.1.2",
"lefthook": "2.1.4",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "0.7.2",
"tsx": "^4.21.0",
"turbo": "2.8.21",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"cpu-features",
"esbuild",
"lefthook",
"protobufjs",
"ssh2"
]
}
}