-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "hapi-seed",
"version": "1.0.0",
"description": "hapi app",
"engines": {
"node": "12.x"
},
"main": "index.js",
"scripts": {
"start": "npx ts-node src/index.ts",
"start:dev": "nodemon",
"db:make-migrate": "npx knex migrate:make -x ts",
"db:migrate": "npx knex migrate:latest",
"db:up": "npx knex migrate:up",
"db:down": "npx knex migrate:down",
"prettier-fix": "npx prettier --write src test",
"seed:make": "npx knex seed:make",
"seed:run": "npx knex seed:run",
"test": "export NODE_ENV=Test && npx mocha -r ts-node/register --exit --timeout 5000 test/**/*.spec.ts -- --silent",
"test:cov": "export NODE_ENV=Test && npx nyc --reporter=text mocha -r ts-node/register --exit --timeout 5000 test/**/*.spec.ts -- --silent && npx nyc report --reporter=lcovonly",
"test:watch": "export NODE_ENV=Test && npx mocha -w --watch-files src/ test/ -r ts-node/register test/**/*.spec.ts",
"test:scan": "sonar-scanner"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [],
"reporter": [
"text",
"text-summary",
"html",
"lcovonly"
],
"cache": true,
"all": true,
"report-dir": "./coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^20.0.1",
"@hapi/inert": "6.0.3",
"@hapi/vision": "6.0.1",
"@sentry/node": "6.2.3",
"@sentry/tracing": "6.2.3",
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"aws-sdk": "2.871.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"date-fns": "2.19.0",
"dotenv": "^8.2.0",
"fp-ts": "2.9.5",
"fs-promise": "2.0.3",
"google-auth-library": "7.0.4",
"hapi-auth-jwt2": "^10.2.0",
"hapi-sentry": "3.2.0",
"hapi-swagger": "14.0.0",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.6",
"nodemailer": "6.5.0",
"nunjucks": "3.2.3",
"pg": "^8.4.0",
"pg-connection-string": "2.4.0",
"ramda": "^0.27.1",
"sinon": "9.0.2",
"slug": "4.0.3",
"ts-node": "^9.0.0",
"typedoc": "^0.20.34",
"typescript": "^4.0.3",
"uuid": "8.3.1",
"winston": "3.3.3",
"zipkin": "^0.22.0",
"zipkin-instrumentation-hapi": "^0.22.0"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/chai-datetime": "0.0.36",
"@types/faker": "^5.1.2",
"@types/ramda": "^0.27.20",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chai": "4.3.0",
"chai-datetime": "^1.7.0",
"chai-http": "4.3.0",
"eslint": "^7.10.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.1.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"supertest": "^6.1.3"
}
}