-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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": "hapi-boilerplate-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard",
"start": "node index.js",
"dev": "npm-run-all -p dev:*",
"dev:server": "nodemon index.js",
"dev:queue": "nodemon src/core/queue.js",
"test": "NODE_ENV=test ./node_modules/.bin/lab -l -v -m 60000 --pattern 'spec' src/test/index.spec.js src/modules"
},
"keywords": [
"api"
],
"author": "David Veloso <davidedsoon@gmail.com>",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
"@hapi/good-squeeze": "^5.2.0",
"@hapi/hapi": "^18.3.1",
"@hapi/inert": "^5.2.1",
"@hapi/joi": "^15.1.0",
"@hapi/vision": "5.5.2",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"bull": "^3.12.0",
"dotenv": "^8.0.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.5.1",
"hapi-auth-jwt2": "^8.6.1",
"hapi-router": "^5.0.0",
"hapi-swagger": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"lout": "^11.2.3",
"nodemailer": "^6.3.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"rotating-file-stream": "^1.4.3",
"sequelize": "^5.18.0",
"uuid": "^3.3.3",
"xlr": "^0.5.1"
},
"devDependencies": {
"@hapi/code": "^6.0.0",
"@hapi/lab": "^19.1.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"sqlite3": "^4.1.0",
"standard": "^14.3.1"
}
}