-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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": "stagereview",
"version": "0.1.0",
"private": true,
"description": "pnpm workspace root for stagereview (packages/cli) and its supporting packages.",
"homepage": "https://github.com/ReviewStage/stage-cli#readme",
"bugs": {
"url": "https://github.com/ReviewStage/stage-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReviewStage/stage-cli.git"
},
"license": "MIT",
"author": "Stage",
"type": "module",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm --filter @stagereview/web build && pnpm --filter stagereview build",
"dev:web": "pnpm --filter @stagereview/web dev",
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r typecheck",
"db:generate": "pnpm --filter stagereview db:generate",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.6.3",
"vitest": "^4.1.5"
}
}