forked from refly-ai/refly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "refly-monorepo",
"private": true,
"engines": {
"pnpm": ">=8"
},
"scripts": {
"commit": "cz",
"dev": "turbo run dev",
"build": "turbo run build",
"build:api": "turbo run build --filter=@refly/api",
"build:web": "turbo run build --filter=@refly/web",
"build:extension": "turbo run build --filter=@refly/extension",
"codegen": "turbo run codegen",
"clean": "turbo run clean",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write",
"test": "pnpm -r --if-present test",
"test:unit": "pnpm -r --if-present test:unit",
"test:integration": "pnpm -r --if-present test:integration",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "20.14.8",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"rimraf": "^5.0.10",
"turbo": "^2.1.2",
"typescript": "5.3.3",
"vitest": "^2.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0"
},
"packageManager": "pnpm@8.15.8",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["biome check --write"],
"*.json": ["biome format --write"]
}
}