-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "web-server",
"version": "0.0.1",
"description": "A web server developed for demonstration purposes.",
"keywords": [
"hapi",
"objection",
"knex"
],
"homepage": "https://github.com/filipesantoss/web-server",
"bugs": {
"url": "https://github.com/filipesantoss/web-server/issues"
},
"license": "MIT",
"author": "filipesantoss",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/filipesantoss/web-server.git"
},
"scripts": {
"knex": "NODE_PATH=$NODE_PATH:.:src knex",
"database": "NODE_PATH=$NODE_PATH:.:src node src/util/database.js",
"password": "NODE_PATH=$NODE_PATH:.:src node src/util/password.js",
"start": "NODE_PATH=$NODE_PATH:.:src node src/index.js"
},
"dependencies": {
"bcrypt": "^3.0.6",
"boom": "^7.3.0",
"hapi": "^18.1.0",
"hapi-auth-jwt2": "^8.6.1",
"inert": "^5.1.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.1",
"mysql": "^2.17.1",
"objection": "^1.6.9"
}
}