This repository has been archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.19 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
85
86
87
88
89
{
"name": "@nowsta/auth-middleware",
"version": "0.0.11",
"description": "Nowsta 2.0 Auth Middleware",
"author": "Dima D. <dmytro.dudariev@nowsta.com>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/test.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"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": "restricted"
},
"repository": {
"type": "git",
"url": "https://github.com/Nowsta/auth-middleware.git"
},
"bugs": "https://github.com/Nowsta/auth-middleware.git",
"peerDependencies": {
"@nestjs/common": "^6.0.0"
},
"dependencies": {
"@nestjs/graphql": "^8.0.2",
"amqp-connection-manager": "^3.7.0",
"amqplib": "^0.8.0",
"apollo-server-express": "^3.5.0",
"axios": "^0.24.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"graphql": "^15.6.1",
"graphql-scalars": "^1.10.0",
"graphql-tools": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"rabbitmq": "0.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"tsc": "^2.0.3",
"type-graphql": "^1.1.1",
"typegraphql-nestjs": "^0.4.1"
},
"devDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/platform-express": "^6.0.0",
"@nestjs/testing": "6.1.1",
"@types/express": "4.16.1",
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"@types/supertest": "2.0.7",
"jest": "24.7.1",
"prettier": "1.17.0",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tsc-watch": "2.2.1",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "^3.4.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}