generated from johnwatson484/hapi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "hapi-template",
"version": "1.1.0",
"description": "",
"main": "app/index.js",
"scripts": {
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:lint": "standard",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --coverage=false --onlyChanged --watch --runInBand --no-cache",
"start:watch": "nodemon --inspect=0.0.0.0 --ext js --legacy-watch app/index.js",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext js --legacy-watch app/index.js"
},
"author": "John Watson",
"license": "MIT",
"dependencies": {
"@azure/service-bus": "^7.7.1",
"@hapi/boom": "10.0.0",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "20.2.2",
"@hapi/inert": "7.0.0",
"@hapi/vision": "7.0.0",
"dotenv": "^16.0.2",
"hapi-pino": "10.1.0",
"joi": "^17.6.0",
"nunjucks": "3.2.3"
},
"devDependencies": {
"blipp": "4.0.2",
"jest": "28.1.3",
"jest-junit": "14.0.0",
"nodemon": "2.0.19",
"standard": "17.0.0"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}