-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.13 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
61
62
63
64
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"lint": "eslint \"{src,apps,libs,test,packages}/**/*.ts\" --fix",
"release": "standard-version",
"release:major": "standard-version -- --release-as major",
"release:minor": "standard-version -- --release-as minor",
"release:patch": "standard-version -- --release-as patch",
"release:version": "standard-version -- --release-as",
"prepare": "husky install",
"pre-commit": "yarn build && yarn lint-staged --no-stash",
"prepare-commit-msg": "devmoji -e",
"commit-msg": "npx --no-install commitlint --edit",
"pre-push": "yarn test",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nestjs/cli": "^8.1.1",
"@nestjs/schematics": "^8.0.3",
"@nestjs/testing": "^8.0.6",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"devmoji": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-security": "^1.4.0",
"git-branch-is": "^4.0.0",
"git-format-staged": "^2.1.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.10.1",
"typescript": "4.3.5"
}
}