-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
84 lines (84 loc) · 2.98 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
{
"name": "root",
"version": "6.0.0-alpha.1",
"license": "BSD-3-Clause",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@concepta/eslint-config": "^1.1.4",
"@concepta/prettier-config": "^1.1.4",
"@darraghor/eslint-plugin-nestjs-typed": "^3.22.6",
"@nestjs/cli": "^10.4.4",
"@nestjs/schematics": "^10.1.3",
"@nestjs/testing": "^10.4.1",
"@types/express": "^4.17.21",
"@types/jest": "^27.5.2",
"@types/node": "^18.19.44",
"@types/nodemailer": "^6.4.15",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^7.0.4",
"jest": "27.5.1",
"jest-junit": "^13.2.0",
"jest-mock-extended": "^2.0.9",
"jsonc-eslint-parser": "^2.4.0",
"lerna": "^3.22.1",
"markdownlint-cli": "^0.41.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.14",
"rimraf": "^3.0.2",
"rxjs": "^7.8.1",
"standard-version": "^9.5.0",
"supertest": "^6.3.4",
"ts-jest": "^27.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^3.15.0",
"typedoc": "^0.25.13",
"typedoc-plugin-coverage": "^3.3.0",
"typeorm": "^0.3.20",
"typescript": "^4.9.5"
},
"scripts": {
"postinstall": "husky install",
"clean": "./node_modules/.bin/rimraf packages/*/dist packages/*/tsconfig.tsbuildinfo docs",
"build": "./node_modules/.bin/tsc --build",
"prepublish": "yarn clean && yarn build",
"watch": "yarn build && ./node_modules/.bin/tsc --build --watch",
"lint": "eslint \"packages/*/src/**/*.{ts,js,json}\"",
"lint:fix": "yarn lint --fix",
"lint:md": "markdownlint README.md packages/**/*.md",
"lint:md:fix": "yarn lint:md --fix",
"lint:all": "yarn lint && yarn lint:md",
"test": "jest --testTimeout 30000",
"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:all": "yarn test && yarn test:e2e",
"doc": "rimraf ./docs && typedoc",
"doc:cov": "yarn doc --coverageOutputType all",
"changelog": "standard-version",
"changelog:minor": "standard-version --release-as minor",
"changelog:patch": "standard-version --release-as patch",
"changelog:major": "standard-version --release-as major"
},
"packageManager": "[email protected]"
}