-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
34 lines (34 loc) · 981 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
{
"name": "@tkssharma/nestjs-microservices",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"check-engines": "pnpm run check-engines -r",
"prebuild": "npm run check-engines",
"prepare": "husky install",
"prettier": "./node_modules/.bin/prettier --check \"**/*.{js,json,ts,yml,yaml}\"",
"prettier:write": "./node_modules/.bin/prettier --write \"**/*.{js,json,ts,yml,yaml}\""
},
"keywords": [],
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"fbjs-scripts": "^3.0.1",
"husky": "^7.0.4",
"nx": "^15.8.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}