-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "account-verification-node",
"version": "1.0.0",
"description": "Twilio and Authy powered user account verification using Node.js the Express web framework",
"main": "index.js",
"scripts": {
"test": "mocha test",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TwilioDevEd/account-verification-node"
},
"keywords": [
"twilio",
"express",
"mongodb",
"twiml",
"webhooks",
"voip"
],
"author": "Kevin Whinnery",
"license": "MIT",
"bugs": {
"url": "https://github.com/TwilioDevEd/account-verification-node/issues"
},
"homepage": "https://github.com/TwilioDevEd/account-verification-node",
"dependencies": {
"authy": "^0.3.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.12.0",
"connect-flash": "^0.1.1",
"cron": "^1.1.0",
"dotenv": "^2.0.0",
"express": "^4.12.0",
"express-session": "^1.10.3",
"jade": "^1.9.2",
"moment": "^2.11.2",
"moment-timezone": "^0.5.0",
"mongoose": "^4.0.6",
"mongoose-lifecycle": "^1.0.0",
"morgan": "^1.5.1",
"node-sass-middleware": "^0.10.0",
"sendgrid": "^4.7.1",
"twilio": "^1.11.1"
},
"devDependencies": {
"chai": "^2.1.0",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=4.1.0 <5.5.0"
}
}