-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.59 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.59 KB
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
90
91
92
{
"name": "@switchit/nestjs-oauth2-server",
"version": "0.1.4",
"description": "NestJS oauth2 server by SWITCH IT CONSULTING",
"author": "Switch IT - Consulting",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index",
"private": false,
"keywords": [
"nestjs",
"oauth2",
"server",
"typescript",
"web",
"framework"
],
"bugs": {
"url": "https://github.com/switchit-conseil/nestjs-oauth2-server-module/issues"
},
"homepage": "https://github.com/switchit-conseil/nestjs-oauth2-server-module#readme",
"contributors": [
"Nicolas Macherey <nicolas.macherey@gmail.com>"
],
"scripts": {
"build": "./node_modules/.bin/rimraf dist && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest --runInBand --verbose ./test",
"test:unit": "jest --runInBand --verbose ./test/unit",
"test:watch": "jest --watch ./test",
"test:cov": "jest --coverage --runInBand ./test",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand ./test/e2e",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand --verbose"
},
"dependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/cqrs": "^6.0.0",
"@nestjs/passport": "^6.1.0",
"@nestjs/swagger": "^3.1.0",
"@nestjs/typeorm": "^6.1.3",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"rimraf": "^3.0.0",
"rxjs": "^6.3.3",
"selfsigned": "^1.10.6",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@nestjs/platform-express": "^6.5.3",
"@nestjs/testing": "^6.1.1",
"@types/chai": "^4.2.4",
"@types/cucumber": "^4.0.7",
"@types/express": "4.16.1",
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"@types/supertest": "2.0.7",
"cucumber": "^6.0.2",
"gherkin-jest": "^0.24.0",
"jest": "24.7.1",
"nodemailer-stub": "^1.2.1",
"pg": "^7.12.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",
"typeorm-fixtures-cli": "^1.3.5",
"typescript": "3.4.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node"
}
}