-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.41 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
{
"name": "buzzer",
"version": "1.0.0",
"private": true,
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "gulp",
"start": "node dist/app.js",
"dev": "nodemon --watch 'src/**/*' --exec 'ts-node' src/app.ts",
"lint": "eslint src/ --fix; prettier src/ --write"
},
"author": "Joel Ye",
"license": "MIT",
"eslintConfig": {
"extends": "@hex-labs/eslint-config"
},
"prettier": "@hex-labs/prettier-config",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"@sentry/node": "^6.2.3",
"@slack/web-api": "^6.1.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^8.0.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fetch": "^1.1.0",
"fs": "0.0.1-security",
"graphql": "^15.5.0",
"graphql-server-express": "^1.3.2",
"graphql-tools": "^7.0.4",
"html-to-text": "^7.0.0",
"luxon": "^1.26.0",
"marked": "^2.0.3",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"passport": "^0.4.1",
"passport-ground-truth": "^1.0.1",
"passport-oauth2": "^1.5.0",
"prettier": "^2.2.1",
"socket.io": "^4.0.0",
"source-map-support": "^0.5.19",
"supertest": "^6.1.3",
"twilio": "^3.57.0",
"twit": "^2.2.11"
},
"devDependencies": {
"@hex-labs/eslint-config": "^1.1.5",
"@hex-labs/prettier-config": "^1.1.5",
"@hex-labs/tsconfig": "^1.1.5",
"@types/body-parser": "^1.19.0",
"@types/compression": "1.7.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/graphql": "^14.2.3",
"@types/html-to-text": "^6.0.0",
"@types/luxon": "^1.26.2",
"@types/marked": "^2.0.2",
"@types/morgan": "^1.9.2",
"@types/node-fetch": "^2.5.8",
"@types/node-schedule": "^1.3.1",
"@types/passport": "^1.0.6",
"@types/passport-oauth2": "^1.4.10",
"@types/socket.io": "^2.1.13",
"@types/supertest": "^2.0.10",
"@types/twit": "^2.2.28",
"@types/whatwg-fetch": "0.0.33",
"@types/zen-observable": "0.8.2",
"del": "^6.0.0",
"eslint": "^7.22.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}