-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "@antyper/database-session",
"version": "2.1.0",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"prepublish": "npm run build",
"scripts": {
"test": "jest --runInBand --forceExit",
"build": "./node_modules/.bin/tsc -p .",
"prepublish": "npm run build"
},
"dependencies": {
"async-local-storage": "^2.3.1",
"uuid": "^8.3.2"
},
"peerDependencies": {
"@nestjs/common": "^7.6.12",
"rxjs": "^6.6.3",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@nestjs/common": "^7.6.12",
"@nestjs/core": "^7.6.12",
"@nestjs/platform-express": "^7.6.12",
"@nestjs/testing": "^7.6.12",
"@nestjs/typeorm": "^7.1.5",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"jest": "^26.6.3",
"pg": "^8.5.1",
"prettier": "^2.1.2",
"rxjs": "^6.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typeorm": "^0.2.31",
"typescript": "^4.1.5"
},
"author": "",
"license": "ISC",
"description": "",
"homepage": "https://github.com/pnkp/database-session",
"repository": {
"type": "git",
"url": "https://github.com/pnkp/database-session"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}