-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 3.04 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
{
"name": "prm-deductions-gp2gp-messenger",
"version": "1.0.0",
"description": "GP2GP Messenger Service for making and receiving Health Records using GP2GP",
"main": "src/server.js",
"scripts": {
"check-audit": "check-audit",
"resolve-audit": "resolve-audit",
"lint": "eslint src/ test/ scripts/",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint:fix && npm run test:unit && npm run test:integration",
"test:unit": "jest \"src/(?!(.*\\integration.test\\.js))\" --setupFiles --detectOpenHandles dotenv/config",
"test:integration": "jest \"src/.*\\integration.test\\.js\" --detectOpenHandles --forceExit --setupFiles dotenv/config",
"test:functional": "jest test/functional/*",
"test:functional:opentest": "jest \"test/functional/(?!(.*\\health-record-requests.test.js))\"",
"test:e2e": "jest test/e2e/*",
"test:docker": "jest test/docker/*",
"test:watch": "jest \"src/(?!(.*\\integration.test\\.js))\" --setupFiles dotenv/config --watch",
"test:coverage": "jest src/ --maxWorkers=1 --coverage --detectOpenHandles --forceExit --setupFiles dotenv/config",
"build": "babel src -d build --ignore '**/*.test.js' --ignore '**/__mocks__/*' --ignore '**/__tests__/*' && cp src/*.json build",
"start": "node build/server.js",
"start:local": "babel-node -r dotenv/config src/server.js",
"start:nodemon": "nodemon --exec babel-node -r dotenv/config src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsconnect/prm-deductions-gp2gp-messenger.git"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.470.0",
"@babel/runtime": "^7.17.8",
"aws-sdk": "^2.1354.0",
"axios": "^1.7.2",
"dateformat": "^4.6.3",
"dotenv": "^16.0.0",
"express": "^4.19.2",
"express-validator": "^6.14.0",
"express-winston": "^4.2.0",
"fast-xml-parser": "^4.2.5",
"helmet": "^6.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"npm-audit-resolver": "3.0.0-7",
"swagger-ui-express": "^4.3.0",
"traverse": "^0.6.6",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"xml2js": "^0.5.0",
"xmlserializer": "^0.6.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-runtime": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.3",
"jest-when": "^3.5.1",
"nock": "^13.2.4",
"npm-force-resolutions": "0.0.10",
"prettier": "^2.6.0",
"supertest": "^6.3.3"
},
"jest": {
"testPathIgnorePatterns": [
".*/__tests__/data/.*",
"src/templates/__tests__/test-fragment-message-payload-template.js",
".*/test-utils.js"
],
"resetModules": true,
"clearMocks": true,
"automock": false
},
"overrides": {
"glob-parent": "^6.0.1",
"json5": "2.2.2",
"superagent": "8.0.8",
"semver": ">=7.5.2"
}
}