-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 911 Bytes
/
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
{
"name": "refly-lib",
"engines": {
"pnpm": ">=8"
},
"scripts": {
"commit": "cz",
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "turbo run clean",
"lint:ci": "turbo run lint:ci",
"lint": "turbo run lint",
"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",
"@changesets/cli": "^2.27.8",
"@types/node": "20.14.8",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"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"
},
"packageManager": "pnpm@8.15.8",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}