forked from golevelup/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"integration/*"
],
"dependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.2.6",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"stripe": "^8.39.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^7.5.0",
"@nestjs/testing": "^8.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.120",
"@types/node": "^12.12.31",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"all-contributors-cli": "^6.20.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"husky": "^1.3.1",
"jest": "^27.4.3",
"lerna": "^3.20.2",
"lint-staged": "^8.1.4",
"prettier": "^2.5.1",
"rimraf": "^2.6.3",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"typescript": "^4.5.2"
},
"scripts": {
"commit": "yarn run git-cz",
"lerna:publish": "lerna run build && yarn test && lerna publish -m 'chore: publish'",
"lerna:prerelease": "lerna run build && yarn test && lerna publish prerelease --preid rc -m 'chore: publish prerelease'",
"build": " lerna run build --ignore rabbitmq-integration",
"build:watch": "lerna run --parallel build:watch --ignore rabbitmq-integration",
"clean": "rimraf packages/**/lib",
"test": "jest",
"test:integration": "jest --config ./jest-e2e.json",
"test:ci:integration": "NODE_ENV=ci jest --config ./jest-e2e.json --forceExit",
"test:ci": "jest --coverage --coverageReporters=cobertura --coverageReporters=html",
"lint": "eslint --ext ts .",
"contributors:generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"yarn run prettier --write",
"yarn lint",
"git add"
],
"*.md": [
"yarn run prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.(t)sx?$": "ts-jest"
},
"projects": [
"<rootDir>/packages/*"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.spec.json"
}
}
},
"version": "0.0.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}