forked from DEFRA/ffc-customer-registry-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fcp-data-access-layer-api",
"version": "1.4.4",
"description": "Customer Registry GraphQL Service",
"homepage": "https://github.com/DEFRA/fcp-data-access-layer-api",
"main": "app/index.js",
"type": "module",
"scripts": {
"format:gql": "prettier \"app/graphql/types/**/*.gql\" --write",
"format:js": "standard --fix",
"format": "npm run format:js && npm run format:gql",
"lint:gql": "eslint \"app/graphql/types\" && prettier \"app/graphql/types/**/*.gql\" --check",
"lint:js": "standard app/ test/",
"pretest": "npm run lint:js && npm run lint:gql",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext js --legacy-watch app/index.js",
"start:dev": "nodemon -r dotenv/config --ext js,gql app/index.js --watch app/",
"start:watch": "nodemon --inspect=0.0.0.0 --ext js --legacy-watch app/index.js",
"start:mock": "nodemon -r dotenv/config ./mocks --watch ./mocks",
"test": "NODE_OPTIONS=--experimental-vm-modules DOTENV_CONFIG_PATH=./.env.test jest --runInBand --forceExit --detectOpenHandles --setupFiles dotenv/config",
"test:contract": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=test/contract --setupFiles dotenv/config",
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=test/integration --setupFiles dotenv/config",
"test:local": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --setupFiles dotenv/config",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules DOTENV_CONFIG_PATH=./.env.test jest --runInBand --coverage --setupFiles dotenv/config",
"test:changedsince": "NODE_OPTIONS=--experimental-vm-modules DOTENV_CONFIG_PATH=./.env.test jest --runInBand --changedSince=main --coverage --onlyChanged --setupFiles dotenv/config"
},
"author": "Defra",
"contributors": [],
"license": "OGL-UK-3.0",
"dependencies": {
"@apollo/datasource-rest": "^6.4.1",
"@apollo/server": "^4.11.3",
"@as-integrations/hapi": "^2.0.1",
"@azure/event-hubs": "^5.12.2",
"@azure/identity": "^4.6.0",
"@graphql-tools/load-files": "^7.0.1",
"@graphql-tools/merge": "^9.0.17",
"@graphql-tools/mock": "^9.0.15",
"@graphql-tools/schema": "^10.0.16",
"@graphql-tools/utils": "^10.7.2",
"@hapi/hapi": "^21.3.12",
"applicationinsights": "^2.9.6",
"fast-redact": "^3.5.0",
"graphql": "^16.10.0",
"http-status-codes": "^2.3.0",
"https-proxy-agent": "^7.0.6",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"sequelize": "^6.37.5",
"tedious": "^18.6.1",
"tough-cookie": "^4.1.4",
"uuid": "^10.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@mocks-server/core": "^4.0.2",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"mock-jwks": "^3.2.2",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"standard": "^17.1.2"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll",
"it"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
},
"overrides": {
"latest-version": {
"got": "11.8.6"
},
"micromatch": "4.0.8",
"dset": "3.1.4"
}
}