-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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
{
"name": "experian-bankwizard-service",
"version": "0.0.2",
"engines": {
"npm": ">=9.5.0",
"node": ">=18.0.0"
},
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon -L -e .js,.json,.njk,.yml --ignore openapi/openapi.json --exec npm run build:run:dev",
"start:stub": "npm run start:dev & npm run stub",
"openapi:build": "redocly lint openapi/src/openapi-src.json && redocly bundle ./openapi/src/openapi-src.json --output ./openapi/openapi.json && node ./openapi/src/dereference-openapi.js",
"build:run:dev": "npm run openapi:build && node --inspect=0.0.0.0:9229 ./bin/www",
"prepare": "npm run openapi:build && if [ \"$NODE_ENV\" != \"production\" ]; then husky; fi",
"pretest": "npm run openapi:build",
"test": "jest",
"coverage": "jest --coverage",
"stub": "node ./stubs/bankwizard-stub.js",
"dump-eslint-conf": "eslint --print-config ./app.js > ./stuff/eslint-conf.json",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@redocly/cli": "^1.27.2",
"cookie-parser": "~1.4.7",
"dotenv": "^16.4.7",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.21.2",
"express-openapi-validator": "^5.4.2",
"globals": "^15.14.0",
"helmet": "^8.0.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"soap": "^1.1.7",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.3",
"eslint": "^9.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"yamljs": "^0.3.0"
},
"overrides": {
"eslint-config-airbnb-base": {
"eslint": "^9.18.0"
}
},
"license": "MIT"
}