-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": ["examples/*", "packages/*"],
"packageManager": "bun@1.1.13",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"-------------------------------------------------------------------------------": "",
"dev": "turbo run dev --filter='./packages/*'",
"build": "turbo run build --filter='./packages/*'",
"typecheck": "turbo run typecheck --filter='./packages/*'",
"--------------------------------------------------------------------------------": "",
"lint": "biome lint .",
"lint:fix": "biome check . --write",
"check": "biome check .",
"format": "biome format . --write",
"---------------------------------------------------------------------------------": "",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:watch": "turbo run test:watch",
"coverage": "vitest run --coverage",
"----------------------------------------------------------------------------------": "",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@vitest/coverage-v8": "^1.6.0",
"lefthook": "^1.6.16",
"turbo": "^2.0.4",
"vitest": "^1.6.0"
}
}