-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 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": "jacly-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"prepare": "husky",
"build": "turbo build",
"build:watch": "turbo build:watch",
"rebuild": "pnpm run clean-node && pnpm install && pnpm run build",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "biome lint --write",
"format": "turbo format",
"format:check": "turbo format:check",
"check": "biome check --write",
"type-check": "turbo type-check",
"fix-all": "biome check --write",
"check-all": "biome check && pnpm run build",
"clean": "turbo clean && rm -rf node_modules/.turbo",
"clean-node": "turbo clean-node && rm -rf node_modules",
"test:prepare-registry": "node --experimental-strip-types test/data/runTsScriptTest.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/types": "^20.0.0",
"@jaculus/project": "^0.0.2",
"@obsidize/tar-browserify": "^6.3.2",
"@types/node": "^24.10.0",
"@types/pako": "^2.0.4",
"chai": "^6.2.0",
"husky": "^9.1.7",
"npm-check-updates": "^19.1.2",
"pako": "^2.1.0",
"turbo": "^2.9.6"
}
}