-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "members_api",
"version": "1.0.0",
"description": "HSL Members API",
"author": "Iced Development, LLC",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"start": "knex migrate:latest && node index.js",
"inspect": "nodemon --inspect index.js",
"develop": "DEBUG=error*,general* nodemon --trace-warnings index",
"test": "nodemon --exec 'lab -v --leaks'",
"lint": "eslint . --ext .js",
"coverage": "NODE_ENV=test nyc cover lab -v --leaks",
"db_migrate_up": "knex migrate:up",
"db_migrate_down": "knex migrate:down",
"db_migrate_latest": "knex migrate:latest",
"db_migrate_rollback_all": "knex migrate:rollback --all",
"db_seed": "knex seed:run"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/catbox": "^12.1.0",
"@hapi/catbox-memory": "^6.0.0",
"@hapi/catbox-redis": "^7.0.0",
"@hapi/cookie": "^12.0.0",
"@hapi/hapi": "^21.1.0",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"@sendgrid/mail": "^7.7.0",
"aedes": "^0.48.1",
"b64id": "^1.0.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"breadfruit": "^2.2.1",
"bree": "9.1.3",
"custom-error": "^0.2.1",
"debug": "^4.3.4",
"hapi-auth-jwt2": "^10.2.0",
"hapi-swagger": "^15.0.0",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.3.0",
"lodash": "^4.17.21",
"node-fetch": "2.6.7",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"redis": "^4.5.1",
"sharp": "^0.31.3",
"uuid": "^9.0.0",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@hapi/code": "^9.0.2",
"@hapi/lab": "^25.1.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"knex-schema-inspector": "^3.0.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"rosie": "^2.1.0",
"sinon": "^15.0.1",
"sql-fixtures": "^1.0.4"
}
}