forked from mondo-mob/gae-node-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.03 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@mondomob/gae-node-nestjs",
"version": "7.1.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npx tsc && npm run verify && cp src/auth/auth.graphqls dist/auth",
"test": "jest",
"check-ts": "tsc --noEmit",
"verify": "npm run test && npm run check-ts",
"format": "prettier --write \"./src/**/*.ts\"",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "https://github.com/mondo-mob/gae-node-nestjs.git"
},
"bin": {
"server": "./server.js"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/mondo-mob/gae-node-nestjs",
"dependencies": {
"@google-cloud/connect-datastore": "4.0.0",
"@google-cloud/datastore": "5.1.0",
"@google-cloud/logging-bunyan": "2.0.3",
"@google-cloud/storage": "5.0.0",
"@google-cloud/tasks": "2.0.0",
"@google-cloud/trace-agent": "4.2.5",
"apollo-server-express": "2.13.1",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.12",
"cli-spinner": "0.2.10",
"cls-hooked": "4.2.2",
"colors": "1.4.0",
"commander": "5.1.0",
"dataloader": "2.0.0",
"email-addresses": "3.1.0",
"express-session": "1.17.1",
"graphql": "14.6.0",
"graphql-iso-date": "^3.6.1",
"helmet-csp": "2.10.0",
"html-to-text": "5.1.1",
"io-ts": "1.10.4",
"io-ts-reporters": "0.0.21",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"node-fetch": "2.6.0",
"nodemailer": "6.4.6",
"passport": "0.4.1",
"passport-auth0": "1.3.2",
"passport-google-oauth": "2.0.0",
"passport-google-oauth20": "2.0.0",
"passport-local": "^1.0.0",
"passport-openidconnect": "0.0.2",
"passport-saml": "1.3.3",
"reflect-metadata": "0.1.13",
"tslib": "1.11.2",
"uuid": "8.0.0",
"webpack": "4.43.0"
},
"peerDependencies": {
"@nestjs/core": "^7.0.13",
"@nestjs/common": "^7.0.13",
"@nestjs/platform-express": "^7.0.13",
"@nestjs/graphql": "^7.3.9",
"express": ">= 4.17.1",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@nestjs/common": "7.0.13",
"@nestjs/core": "^7.0.13",
"@nestjs/graphql": "^7.3.9",
"@nestjs/platform-express": "^7.0.13",
"@types/bcryptjs": "2.4.2",
"@types/bunyan": "1.8.6",
"@types/cls-hooked": "4.3.0",
"@types/express": "4.17.6",
"@types/express-session": "1.17.0",
"@types/graphql-iso-date": "^3.3.3",
"@types/html-to-text": "5.1.0",
"@types/jest": "25.2.2",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash": "4.14.151",
"@types/node-fetch": "2.5.7",
"@types/nodemailer": "6.4.0",
"@types/passport": "1.0.3",
"@types/passport-auth0": "1.0.4",
"@types/passport-google-oauth": "1.0.41",
"@types/passport-local": "^1.0.33",
"@types/passport-saml": "1.1.2",
"@types/uuid": "7.0.3",
"chokidar": "3.4.0",
"express": "4.17.1",
"jest": "26.0.1",
"prettier": "2.0.5",
"rxjs": "6.5.5",
"ts-jest": "26.0.0",
"ts-mockito": "^2.5.0",
"tslint": "6.1.2",
"typescript": "3.9.2"
}
}