forked from AuthySE/Authy-demo
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "account-security-quickstart-node",
"version": "1.0.0",
"description": "Simple demo showing how Twilio Account Security works.",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"start": "nodemon ."
},
"repository": {
"type": "git",
"url": "[email protected]:jstaples/authy-demo.git"
},
"keywords": [
"Authy",
"Twilio",
"2FA",
"NodeJS",
"Push",
"SMS",
"Voice",
"TOTP",
"Soft Token"
],
"author": "Josh Staples",
"license": "MIT",
"dependencies": {
"authy-client": "^1.1.4",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mongodb": "^3.6.6",
"mongoose": "^5.9.6",
"nodemon": "^2.0.7",
"qs": "^6.10.1",
"twilio": "^3.61.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.4",
"jest": "^26.0.1",
"mongodb-memory-server": "^6.9.6",
"supertest": "^6.1.3"
}
}