-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.92 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
{
"name": "trade-exportscore-plp",
"version": "6.4.5",
"description": "",
"homepage": "github.com?owner=defra&repo=trade-exportscore-plp&organization=defra",
"main": "app/index.js",
"scripts": {
"prettier:fix": "npx prettier . --write",
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:lint": "prettier . --write",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --coverage=false --onlyChanged --watch --runInBand --no-cache",
"test:unit": "jest --testPathPattern=test/unit --runInBand",
"test:unit-watch": "jest --testPathPattern=test/unit --coverage=false --onlyChanged --watch",
"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": [],
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/ai-form-recognizer": "^5.0.0",
"@azure/identity": "^4.2.1",
"@azure/service-bus": "^7.9.5",
"@azure/storage-blob": "^12.23.0",
"@boterop/convert-excel-to-json": "^2.0.0",
"@hapi/hapi": "21.3.2",
"adp-messaging": "^2.9.0",
"applicationinsights": "2.8.0",
"blipp": "^4.0.2",
"http-status-codes": "^2.3.0",
"import-local": "^3.1.0",
"joi": "^17.13.1",
"pg": "^8.12.0",
"sequelize": "^6.37.3",
"uuid": "^10.0.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/jest": "29.5.11",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nodemon": "3.0.1",
"prettier": "^3.3.3",
"standard": "^17.1.0"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}