-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
{
"name": "bodhi",
"private": true,
"scripts": {
"build": "turbo run build",
"commit": "cz",
"build:clean": "turbo run clean:build",
"lint-format": "turbo run --parallel lint format ",
"lint-format:fix": "turbo run --parallel lint:fix format:fix",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "turbo run --parallel test",
"typecheck": "turbo run --parallel typecheck",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm release:only",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18",
"pnpm": ">=7.5.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@typescript-eslint/parser": "^5.62.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"father-build": "^1.22.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"typescript": "~5.1.6"
}
}