-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "harrys-habits",
"name_friendly": "Harry's Habits",
"version": "1.0.105",
"description": "A Facebook Messenger Chatbot to help you form healthy habits.",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/harrymt/harryshabits"
},
"engines": {
"node": "8.1.x",
"npm": "5.x"
},
"scripts": {
"test": "node tests/main.js",
"start": "node server.js",
"deploy": "standard-version --silent && git push && git push heroku master"
},
"homepage": "https://github.com/harrymt/harryshabits",
"bugs": "https://github.com/harrymt/harryshabits/issues",
"author": "Harry Mumford-Turner",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.0",
"dotenv": "^4.0.0",
"express": "^4.13.4",
"helmet": "^3.8.1",
"nodemailer": "^4.0.1",
"pg": "7.0.0",
"pug": "^2.0.0-rc.3",
"request": "^2.71.0"
},
"xo": {
"space": true
},
"devDependencies": {
"node-sass": "^4.5.3",
"standard-version": "^4.2.0"
}
}