-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.8 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": "nestjs",
"version": "0.0.1",
"description": "A collection of Bodhi modules and utilities to help you level up your NestJS application.",
"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"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix --ext .js",
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"@typescript-eslint/parser": "^5.35.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"typescript": "^5.2.2",
"prettier": "2.7.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=7.5.1"
}
}