-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.39 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
{
"name": "hapi-auth-token-jwt-example",
"version": "1.0.0",
"description": "Example Hapi application demonstrating usage of hapi-auth-token plugin with JWT tokens",
"scripts": {
"start": "PORT=3000 node -r babel-core/register -r babel-polyfill bin/www",
"test": "NODE_ENV=test mocha --exit --require babel-core/register --require babel-polyfill test/**/*.test.js",
"coverage": "nyc --reporter=text --reporter=lcov npm run test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"sequelize": "sequelize --config config/database.json --models-path src/models",
"migrate": "yarn run sequelize db:migrate",
"seed": "yarn run sequelize db:seed:all"
},
"dependencies": {
"blipp": "^3.0.0",
"boom": "^7.2.0",
"dotenv": "^5.0.1",
"hapi": "^17.2.2",
"hapi-auth-token": "^2.0.0",
"hapi-swagger": "^9.1.1",
"inert": "^5.1.0",
"joi": "^13.1.2",
"jsonwebtoken": "^8.2.0",
"vision": "^5.3.2"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^5.0.0",
"npm": "^5.6.0",
"nyc": "^11.4.1",
"sinon": "^4.1.6",
"sinon-chai": "^2.14.0"
}
}