-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 936 Bytes
/
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
{
"name": "2fa",
"version": "1.0.0",
"description": "Two factor authentification with nodejs",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThalKod/node-2fa.git"
},
"author": "Thal Marcelin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThalKod/node-2fa/issues"
},
"homepage": "https://github.com/ThalKod/node-2fa#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"js-sha512": "^0.8.0",
"mongoose": "^5.1.5",
"nodemon": "^1.17.5",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.0",
"qrcode": "^1.2.0",
"speakeasy": "^2.0.0"
}
}