-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.18 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
{
"name": "root",
"version": "4.0.0-alpha.22",
"license": "BSD-3-Clause",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@compodoc/compodoc": "^1.1.18",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "27.4.7",
"jest-junit": "^13.0.0",
"jest-mock-extended": "^2.0.4",
"jsonc-eslint-parser": "^2.1.0",
"lerna": "^3.22.1",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"standard-version": "^9.3.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typeorm": "^0.3.0",
"typescript": "^4.3.5"
},
"scripts": {
"clean": "./node_modules/.bin/rimraf packages/*/dist packages/*/tsconfig.tsbuildinfo",
"build": "./node_modules/.bin/tsc --build",
"watch": "yarn build && ./node_modules/.bin/tsc --build --watch",
"lint": "eslint \"./*.json\" \"packages/*/src/**/*.{ts,js,json}\" --fix",
"test": "jest --testTimeout 30000",
"test:one": "jest --testTimeout 30000 packages/nestjs-invitation/src/services/invitation.service.spec.ts",
"prepare": "husky install && yarn clean && yarn build",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "yarn test:cov --ci --reporters=default --reporters=jest-junit",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./jest.config-e2e.json --testTimeout 30000",
"test:e2e:one": "jest --config ./jest.config-e2e.json --testTimeout 30000 packages/nestjs-invitation/src/controllers/invitation.controller.e2e-spec.ts",
"test:all": "yarn test && yarn test:e2e",
"doc": "rimraf ./documentation && compodoc -p ./tsconfig.doc.json --disablePrivate --disableProtected",
"doc:serve": "yarn doc -s",
"doc:watch": "yarn doc:serve -w",
"doc:cov": "yarn doc --coverageMinimumPerFile 90 --coverageTestThresholdFail false",
"doc:cov:ut": "yarn doc:cov --unitTestCoverage ./coverage/coverage-summary.json",
"doc:ci": "yarn doc:cov:ut --coverageTestThresholdFail true",
"changelog": "standard-version",
"changelog:minor": "standard-version --release-as minor",
"changelog:patch": "standard-version --release-as patch",
"changelog:major": "standard-version --release-as major"
},
"resolutions": {
"**/@angular-devkit/schematics-cli/minimist": "^1.2.6"
}
}