-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "noire-server",
"version": "0.6.1",
"description": "Noire Server",
"main": "lib/index.js",
"keywords": [
"hapi",
"boilerplate"
],
"scripts": {
"start": "NODE_PATH=$NODE_PATH:lib:. node lib/index.js",
"watch": "NODE_PATH=$NODE_PATH:lib:. DEBUG=true nodemon --watch lib lib/index.js",
"test": "NODE_PATH=$NODE_PATH:lib:. lab --environment testing",
"test:grep": "NODE_PATH=$NODE_PATH:lib:. lab --environment testing --coverage-path none --grep",
"codecov": "mkdir .coverage 2>/dev/null; NODE_PATH=$NODE_PATH:lib:. lab -r lcov > .coverage/lcov.info && codecov",
"reset": "NODE_PATH=$NODE_PATH:lib:. node lib/utils/reset.js",
"secret": "NODE_PATH=$NODE_PATH:lib:. node lib/utils/auth.js secret",
"token": "NODE_PATH=$NODE_PATH:lib:. node lib/utils/auth.js token",
"hash": "NODE_PATH=$NODE_PATH:lib:. node lib/utils/auth.js hash",
"props": "NODE_PATH=$NODE_PATH:lib:. node lib/utils/props.js"
},
"repository": {
"type": "git",
"url": "https://github.com/academia-de-codigo/noire-server.git"
},
"author": "Academia de Código",
"license": "MIT",
"bugs": {
"url": "https://github.com/academia-de-codigo/noire-server/issues"
},
"homepage": "https://github.com/academia-de-codigo/noire-server",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/glue": "^7.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/hoek": "^9.0.4",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.0",
"bcrypt": "^4.0.1",
"chalk": "^3.0.0",
"dotenv": "^8.2.0",
"exiting": "^6.0.1",
"handlebars": "^4.7.3",
"hapi-auth-jwt2": "^10.0.0",
"hapi-pagination": "^3.0.0",
"hapi-pino": "^6.5.0",
"hapi-swagger": "^12.1.3",
"html-to-text": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.12",
"nodemailer": "^6.4.6",
"objection": "^2.1.3",
"pg": "^7.18.2",
"pino": "^5.17.0",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/lab": "^22.0.4",
"codecov": "^3.6.5",
"eslint-config-prettier": "^6.10.1",
"mock-require": "^3.0.3",
"nodemon": "^2.0.2",
"prettier": "^2.0.1",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"qs": "^6.9.2",
"sinon": "^9.0.1"
}
}