-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "@devseeder/nestjs-microservices-schemas",
"version": "1.0.43",
"description": "NestJS Schema Package for DevSeeder projects",
"author": "Maick Speck <maick@devseeder.com>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [
"nestjs"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/DevSeeder/nestjs-microservices-schema/"
},
"bugs": "https://github.com/DevSeeder/nestjs-microservices-schema/",
"dependencies": {
"@devseeder/microservices-exceptions": "^1.0.5",
"@devseeder/nestjs-microservices-commons": "^1.0.93",
"@nestjs/common": "^8.4.7",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^8.0.0",
"@nestjs/mongoose": "^9.2.0",
"joi": "^17.11.0",
"mongoose": "^6.5.3",
"nest": "^0.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}