-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.29 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
106
107
{
"name": "ground-truth",
"version": "1.4.0",
"description": "Single sign on for HackGT apps",
"main": "app.js",
"scripts": {
"build": "gulp",
"start": "node dist/app.js",
"debug": "node --nolazy --inspect-brk=9229 src/app.js",
"dev": "nodemon --watch 'src/**/*' -e ts,js,hbs,css --exec 'ts-node' src/app.ts",
"lint": "eslint ./src --fix; prettier ./src --write"
},
"repository": {
"type": "git",
"url": "https://github.com/HackGT/ground-truth.git"
},
"author": "Ryan Petschek",
"license": "MIT",
"bugs": {
"url": "https://github.com/HackGT/ground-truth/issues"
},
"homepage": "https://github.com/HackGT/ground-truth#readme",
"eslintConfig": {
"extends": "@hex-labs/eslint-config"
},
"prettier": "@hex-labs/prettier-config",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"@sentry/node": "^5.29.2",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cookie-signature": "^1.1.0",
"core-js": "^3.8.1",
"csurf": "^1.11.0",
"email-templates": "^8.0.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"git-rev-sync": "^3.0.1",
"handlebars": "^4.7.6",
"helmet": "^4.2.0",
"html-to-text": "^6.0.0",
"marked": "^2.0.0",
"moment": "^2.29.1",
"mongoose": "^5.11.8",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"oauth2orize": "^1.11.0",
"oauth2orize-pkce": "^0.1.2",
"passport": "^0.4.1",
"passport-cas2": "petschekr/passport-cas",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"password-validator": "^5.1.1",
"rate-limiter-flexible": "^2.1.15",
"serve-favicon": "^2.5.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@hex-labs/eslint-config": "^1.1.0",
"@hex-labs/prettier-config": "^1.1.0",
"@hex-labs/tsconfig": "^1.1.0",
"@types/compression": "1.7.0",
"@types/connect-flash": "0.0.36",
"@types/connect-mongo": "3.1.2",
"@types/cookie-parser": "^1.4.2",
"@types/cookie-signature": "^1.0.3",
"@types/csurf": "^1.11.0",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/html-to-text": "^6.0.0",
"@types/marked": "^1.2.1",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.16",
"@types/node-fetch": "^2.5.7",
"@types/oauth2orize": "^1.8.8",
"@types/passport": "^1.0.4",
"@types/passport-facebook": "^2.1.10",
"@types/passport-github2": "^1.2.4",
"@types/passport-google-oauth20": "^2.0.5",
"@types/passport-http": "^0.3.8",
"@types/passport-http-bearer": "^1.0.36",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/serve-favicon": "^2.5.2",
"@types/uuid": "^8.3.0",
"del": "^6.0.0",
"eslint": "^7.21.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-node": "^9.1.1"
}
}