generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.28 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
{
"name": "aphw-ddi-api",
"version": "0.81.4",
"description": "API to manage CRUD / query functions for dangerous dogs register",
"homepage": "https://github.com/DEFRA/aphw-ddi-api",
"main": "app/index.js",
"scripts": {
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit --silent=\"false\"",
"test:parallel": "jest --forceExit --silent=\"false\"",
"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": "Defra",
"contributors": [
"Shaun Fitzsimons [email protected]",
"Steve Dickinson [email protected]"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/identity": "4.2.1",
"@azure/storage-blob": "12.13.0",
"@hapi/basic": "^7.0.2",
"@hapi/catbox": "^12.1.1",
"@hapi/catbox-redis": "7.0.2",
"@hapi/hapi": "20.2.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"@hapi/vision": "^7.0.3",
"@hapi/wreck": "^18.1.0",
"@joi/date": "2.1.0",
"applicationinsights": "2.3.5",
"braces": "3.0.3",
"date-fns": "^3.0.6",
"dayjs": "^1.11.10",
"ffc-messaging": "2.10.1",
"hapi-swagger": "^17.2.1",
"joi": "^17.11.0",
"js-levenshtein": "^1.1.6",
"json-difference": "1.16.1",
"jsonwebtoken": "^9.0.2",
"node-cron": "3.0.3",
"pdfkit": "^0.14.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"read-excel-file": "^5.8.1",
"sequelize": "^6.33.0",
"talisman": "1.1.4",
"tough-cookie": "^4.1.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@hapi/catbox-memory": "^6.0.2",
"jest": "29.2.2",
"jest-junit": "14.0.1",
"jest-when": "^3.6.0",
"nodemon": "^3.0.1",
"standard": "17.0.0"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}