-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "tutods-lib",
"private": true,
"license": "MIT",
"description": "Monorepo to store my packages.",
"packageManager": "pnpm@11.20.0",
"repository": {
"url": "https://github.com/tutods/lib",
"type": "git"
},
"type": "module",
"scripts": {
"prepare": "if [ \"$LEFTHOOK\" != \"0\" ];then lefthook install; fi",
"build": "nx run-many -t build",
"release": "nx release",
"lint": "biome check .",
"lint:fix": "biome check --no-errors-on-unmatched --write .",
"lint:staged": "biome check --no-errors-on-unmatched --staged .",
"lint:ci": "biome ci --no-errors-on-unmatched ."
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@nx/js": "23.1.1",
"@rsbuild/plugin-react": "^2.1.0",
"@rslib/core": "^0.23.2",
"@swc-node/register": "~1.12.1",
"@swc/core": "~1.15.47",
"@swc/helpers": "~0.5.23",
"@tutods/biome-config": "workspace:*",
"@tutods/renovate-config": "workspace:*",
"@types/node": "26.2.0",
"@types/react": "^19.2.18",
"lefthook": "^2.1.10",
"nx": "23.1.1",
"react": "^19.2.8",
"typescript": "~7.0.2"
}
}