forked from connor11528/task-app-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 836 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
{
"name": "task-app-backend",
"version": "1.0.0",
"description": "A task app built with Hapi and Mongoose. Part of a tutorial series",
"main": "index.js",
"scripts": {
"start": "nodemon --no-deprecation src/index.js",
"test": "lab --verbose --assert code --coverage",
"db:seed": "node src/utils/seed.js",
"db:addUsers": "node src/utils/addUsers.js"
},
"author": "Connor Leech",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.4",
"bluebird": "^3.5.3",
"boom": "^7.3.0",
"dotenv": "^6.2.0",
"glue": "^6.0.0",
"hapi": "^18.1.0",
"hapi-auth-jwt2": "^8.3.0",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"mailgun-js": "^0.22.0",
"mongoose": "^5.4.17",
"nodemon": "^1.18.10"
},
"devDependencies": {
"code": "^5.2.4",
"lab": "^18.0.2"
}
}