-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.42 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.42 KB
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
{
"name": "@flowcore/testing-microservice",
"license": "MIT",
"version": "1.1.0",
"type": "commonjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"url": "https://github.com/flowcore-io/library-testing-microservice-ts.git",
"type": "git"
},
"keywords": [
"flowcore",
"typescript"
],
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"postbuild": "copyfiles README.md LICENSE.txt dist",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"reconfigure": "commitizen init cz-conventional-changelog --yarn --dev --exact --force"
},
"devDependencies": {
"@flowcore/microservice": "3.1.1",
"@jbiskur/nestjs-test-utilities": "3.11.0",
"@nestjs/cli": "9.1.9",
"@nestjs/common": "9.2.1",
"@nestjs/core": "9.2.1",
"@nestjs/microservices": "9.2.1",
"@nestjs/platform-express": "9.2.1",
"@nestjs/terminus": "9.1.4",
"@nestjs/testing": "9.2.1",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"commitizen": "4.3.0",
"copyfiles": "2.4.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"express": "4.18.2",
"husky": "8.0.3",
"jest": "29.4.1",
"jest-junit": "15.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"rimraf": "3.0.2",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.4",
"zod": "3.20.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"dotenv": "16.0.3",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.0"
},
"peerDependencies": {
"@flowcore/microservice": "^3.0.0",
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/terminus": "^9.1.4",
"zod": "^3.20.2"
}
}