-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.64 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
{
"name": "ffc-doc-statement-data",
"version": "2.0.9",
"description": "FFC Statement data integration service",
"homepage": "https://github.com/DEFRA/ffc-doc-statement-data",
"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": "Defra",
"contributors": [
"Marc Templeton m.templeton@kainos.com",
"Abidemi Adio abidemi.adio@defra.gov.uk",
"Leigh Godson leigh.godson.external@eviden.com",
"Amirs Ishmuhametovs amirs.ishmuhametovs@defra.gov.uk",
"Sam Plackett samuel.plackett@eviden.com"
],
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/identity": "4.3.0",
"applicationinsights": "2.9.6",
"ffc-messaging": "2.9.1",
"joi": "17.6.0",
"log-timestamp": "0.3.0",
"pg": "8.7.3",
"pg-hstore": "2.3.4",
"sequelize": "6.31.1"
},
"devDependencies": {
"jest": "29.6.4",
"jest-junit": "14.0.0",
"nodemon": "3.0.1",
"standard": "17.0.0"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}