-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.04 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
{
"name": "nest-multi-tentant-auth",
"version": "1.0.0",
"repository": "git@github.com:isarbits/nest-multi-tentant-auth.git",
"author": "aykarsi <karsten@grombach.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "ts-node -r tsconfig-paths/register src/server.ts",
"start:dev": "nodemon -d 0.5 -e js,ts,json node_modules/ts-node/dist/bin.js src/server.ts",
"test": "nodemon -d 0.5 -e js,ts,json,graphql node_modules/jest/bin/jest.js --runInBand",
"test2": "nodemon -d 0.5 -e js,ts,json,graphql node_modules/jest/bin/jest.js --runInBand -t MasterDataService"
},
"dependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0",
"@nestjs/graphql": "^3.0.0",
"@nestjs/microservices": "^5.0.0",
"@nestjs/passport": "^1.0.11",
"@nestjs/swagger": "^2.0.2",
"@nestjs/testing": "^5.0.0",
"@nestjs/typeorm": "^5.0.0",
"@nestjs/websockets": "^5.0.0",
"@types/supertest": "^2.0.4",
"apollo-server-express": "^1.3.6",
"bcrypt": "^2.0.1",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.4",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"papaparse": "^4.5.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"pg": "^7.4.3",
"rxjs": "^6.2.1",
"typeorm": "^0.2.7",
"typescript": "^2.9.1"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/node": "^9.3.0",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"nodemon": "^1.17.5",
"prettier": "^1.11.1",
"supertest": "^3.1.0",
"ts-jest": "^21.2.4",
"ts-loader": "^4.1.0",
"ts-node": "^6.0.0",
"tslint": "5.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(spec))\\.(jsx?|tsx?)$",
"globalSetup": "./src/jest-startup.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}