-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
48
49
50
51
52
53
54
{
"name": "tutods-lib",
"private": true,
"license": "MIT",
"description": "Monorepo to store my packages.",
"packageManager": "pnpm@10.33.4",
"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 .",
"eslint": "nx run-many -t eslint",
"eslint:fix": "nx run-many -t eslint --fix",
"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.4.15",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@nx/js": "22.7.4",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.40",
"@swc/helpers": "~0.5.21",
"@tutods/biome-config": "workspace:*",
"@types/node": "24.12.4",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"lefthook": "^2.1.8",
"nx": "22.7.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "~6.0.3"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"esbuild",
"nx"
],
"onlyBuiltDependencies": [
"lefthook"
]
}
}