-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 KB
/
package.json
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
{
"name": "@iter-x/root",
"version": "0.0.0",
"workspaces": ["apps/*", "packages/*", "docs"],
"repository": {
"type": "git",
"url": "https://github.com/Baek2back/iter-x"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@types/bun": "latest",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"lefthook": "1.7.14",
"turbo": "latest"
},
"peerDependencies": {
"typescript": "^5.5.2"
},
"scripts": {
"postinstall": "[ -n \"$CI\" ] || lefthook install",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"bench": "turbo run bench",
"coverage": "turbo run coverage",
"changeset": "changeset",
"version-packages": "changeset version",
"publish": "changeset publish",
"commit": "cz",
"docs": "bun run --cwd docs"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"trustedDependencies": ["@biomejs/biome"]
}