-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"name": "graphql-with-oauth2",
"version": "0.0.1",
"description": "GraphQL With OAuth2",
"devDependencies": {
"@types/async": "^2.4.1",
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-ensure-login": "^0.1.4",
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/graphql": "^14.2.0",
"@types/lodash": "^4.14.123",
"@types/node": "^12.0.2",
"@types/nodemailer": "^4.6.8",
"@types/oauth2orize": "^1.8.5",
"@types/passport": "^1.0.0",
"@types/passport-http-bearer": "^1.0.33",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2": "^1.4.8",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/request": "^2.48.1",
"@types/shortid": "^0.0.29",
"nodemon": "^1.19.0",
"typescript": "3.4.5"
},
"dependencies": {
"apollo-server-express": "^2.5.0",
"async": "^2.6.2",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"connect-ensure-login": "^0.1.1",
"connect-redis": "^3.4.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"graphql": "^14.3.0",
"graphql-tools": "^4.0.4",
"lodash": "^4.17.11",
"mongodb": "^3.0.8",
"morgan": "^1.9.1",
"oauth2orize": "^1.11.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-http-oauth": "^0.1.3",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.5.0",
"passport-oauth2-client-password": "^0.1.2",
"passport-oauth2-code": "^0.1.6",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"shortid": "^2.2.14",
"ts-node": "8.1.0",
"ts-node-dev": "^1.0.0-pre.34",
"type-graphql": "^0.17.4",
"typeorm": "0.2.17"
},
"scripts": {
"start": "ts-node src/index.ts",
"start_dev": "nodemon --exec ts-node src/index.ts"
}
}