-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "aws-cdk-local-lambda-monorepo",
"version": "0.0.0",
"description": "tiny-build monorepo for aws-cdk-local-lambda",
"license": "MIT",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpx nx run-many --target=build --all",
"lint": "pnpx nx run-many --target=lint --all",
"typecheck": "pnpx nx run-many --target=typecheck --all",
"format": "pnpx biome format --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "20.5.2",
"@commitlint/config-conventional": "20.5.0",
"@nx/js": "22.7.0",
"@types/node": "25.6.0",
"husky": "9.1.7",
"jsr": "0.14.3",
"nano-staged": "1.0.2",
"nx": "22.7.0",
"typescript": "6.0.3"
},
"nano-staged": {
"*.{ts,tsx}": [
"biome check --write"
]
}
}