-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "@devniel/nestjs-typeorm-testing",
"version": "0.1.5-alpha",
"description": "Typeorm testing module, initially for testing @BeforeInsert hook.",
"author": "devniel",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index",
"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",
"typeorm",
"testing"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/devniel/nestjs-typeorm-testing"
},
"bugs": "https://github.com/devniel/nestjs-typeorm-testing",
"peerDependencies": {
"@nestjs/common": "^7.6.18 || ^8.0.0",
"@nestjs/core": "^7.6.18 || ^8.0.0",
"@nestjs/typeorm": "^7.1.5 || ^8.0.1",
"rxjs": "^6.5.4"
},
"dependencies": {
"pg": "^7.18.2",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/testing": "^8.2.6",
"@nestjs/typeorm": "^8.0.3",
"@types/jest": "24.0.11",
"@types/node": "16.0.0",
"@types/supertest": "2.0.7",
"jest": "^26.6.3",
"prettier": "1.17.0",
"rxjs": "^6.5.4",
"supertest": "4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "8.1.0",
"tsc-watch": "^4.6.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "^4.0.2"
},
"resolutions": {
"**/**/minimist": "^1.2.5",
"**/**/acorn": "^6.4.1"
}
}