-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "user-onboarding-module",
"main": "src/entry.js",
"description": "A Node based module using Mongodb to onboard user's into a very basic application, secured using JWT authorization",
"version": "1.1.0",
"private": false,
"engines": {
"node": "16.*"
},
"scripts": {
"start": "npx babel-node src/entry.js",
"startWithNodemon": "nodemon --exec babel-node src/entry.js",
"build": "npx babel src --out-dir build --ignore node_modules",
"deployment": "node build/entry.js"
},
"dependencies": {
"@hapi/boom": "~9.1.4",
"@hapi/hapi": "~20.2.1",
"@hapi/inert": "~6.0.5",
"@hapi/vision": "~6.1.0",
"async": "~3.2.3",
"aws-sdk": "~2.1082.0",
"axios": "~0.26.1",
"babel-node": "~0.0.1-security",
"body-parser": "1.19.0",
"cfenv": "1.2.4",
"crypto-random-string": "3.3.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"firebase-admin": "^12.0.0",
"fluent-ffmpeg": "2.1.2",
"fs": "0.0.1-security",
"fs-extra": "9.1.0",
"gm": "1.23.1",
"handlebars": "~4.7.7",
"hapi-auth-bearer-token": "8.0.0",
"hapi-swagger": "~14.2.5",
"ical-generator": "~3.0.0",
"joi": "~17.4.0",
"jsonwebtoken": "8.5.1",
"jwt-simple": "~0.5.6",
"knox": "~0.9.2",
"lodash": "~4.17.21",
"log4js": "~6.4.1",
"md5": "2.3.0",
"moment": "~2.29.1",
"moment-range": "~4.0.2",
"mongoose": "~5.12.2",
"nodemailer": "~6.6.3",
"nodemon": "~2.0.15",
"path": "0.12.7",
"randomstring": "1.1.5",
"redis": "^4.6.4",
"socket.io": "~4.0.0",
"underscore": "1.12.1",
"validator": "~13.7.0"
},
"author": "Sanchit Dang",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "~7.17.6",
"@babel/core": "~7.17.5",
"@babel/node": "~7.16.8",
"@babel/plugin-proposal-class-properties": "~7.16.7",
"@babel/plugin-proposal-private-methods": "~7.16.11",
"@babel/preset-env": "~7.16.11"
}
}