-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@eropple/nestjs-auth",
"version": "0.5.2",
"description": "Comprehensive handling of authentication and authorization for NestJS.",
"main": "dist",
"author": "Ed Ropple",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eropple/nestjs-auth"
},
"private": false,
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p .",
"build": "tsc",
"watch": "yarn build -s --watch",
"prepare": "yarn lint && yarn build"
},
"peerDependencies": {
"@nestjs/common": ">=6.5.0",
"@nestjs/core": ">=6.5.0",
"rxjs": ">=6.4.0"
},
"devDependencies": {
"@nestjs/common": "^6.5.0",
"@nestjs/core": "^6.5.0",
"@nestjs/schematics": "^6.3.0",
"@nestjs/swagger": ">=3.0.2",
"@types/cookie": "^0.3.2",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.13",
"@types/lodash": "4.14.145",
"prettier": "^1.18.2",
"rxjs": ">=6.4.0",
"ts-jest": "^24.0.2",
"tslint": "5.20.1",
"typescript": "^3.2.4"
},
"dependencies": {
"@types/bunyan": "^1.8.6",
"@types/bunyan-blackhole": "^0.2.2",
"bunyan": "^1.8.12",
"bunyan-blackhole": "^1.1.1",
"cookie": "^0.4.0",
"lodash": "4.17.15",
"nanomatch": "^1.2.13",
"reflect-metadata": "^0.1.13",
"utility-types": "^3.7.0"
}
}