-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.58 KB
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
{
"name": "hapi-auth-token-db-example",
"version": "1.0.0",
"description": "Example Hapi application demonstrating usage of hapi-auth-token plugin for authentication with DB users",
"scripts": {
"test": "NODE_ENV=test bash -c 'yarn sequelize db:migrate && yarn mocha --exit --require @babel/register test/**/*.test.js'",
"coverage": "nyc --reporter=text --reporter=lcov yarn test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "PORT=3000 node -r @babel/register bin/www",
"sequelize": "sequelize --config config/database.json --models-path src/models",
"migrate": "yarn run sequelize db:migrate",
"seed": "yarn run sequelize db:seed:all"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"axios": "^1.11.0",
"bcrypt": "^5.1.1",
"blipp": "^4.0.2",
"hapi-auth-token": "^3.0.0",
"hapi-swagger": "^14.5.5",
"joi": "^17.9.2",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"sequelize-cli": "^6.6.3",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"sqlite3": "^5.1.7"
},
"resolutions": {
"brace-expansion": "^2.0.2"
}
}