-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.91 KB
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
92
93
94
95
96
97
{
"name": "@National-Digital-Twin/ianode-access-api",
"version": "0.90.0",
"description": "Project to provide user attribute lookups",
"main": "index.js",
"scripts": {
"dev": "nodemon --ignore ./cognito-local --exec babel-node src/index.js",
"build": "babel src --out-dir dist --copy-files",
"bump:prerelease": "yarn version --prerelease && git push && git push --tags",
"bump:pre": "yarn bump:prerelease",
"prepare": "husky install",
"postinstall": "[ \"$LOCAL_MACHINE\" != \"false\" ] || { echo 'Skipping yarn install on CI'; }",
"test": "yarn test:run",
"test:api": "jest --no-cache",
"test:ci": "mkdir -p reports && jest --ci --json --no-cache --watchAll=false --outputFile=\"reports/results.json\"",
"test:run": "jest --coverage=false --watchAll=false",
"test:run:diffMain": "yarn test:run --changedSince=main --bail",
"test:vuln": "trivy fs --security-checks vuln --ignore-unfixed --severity HIGH,CRITICAL .",
"sonar": "sonar-scanner"
},
"repository": {
"type": "git",
"url": "git+https://github.com/National-Digital-Twin/ianode-access.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/National-Digital-Twin/ianode-access/issues"
},
"homepage": "https://github.com/National-Digital-Twin/ianode-access#readme",
"dependencies": {
"@babel/runtime": "^7.24.1",
"axios": "^1.7.4",
"cors": "^2.8.5",
"elliptic": "6.6.1",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.5",
"jws": "^4.0.0",
"micromatch": "4.0.8",
"mongoose": "8.9.5",
"papaparse": "^5.4.1",
"scim2-parse-filter": "^0.2.8",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"bson": "^6.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mockingoose": "^2.16.2",
"msw": "^1.3.3",
"nodemon": "^2.0.22",
"webpack": "^5.96.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testMatch": [
"<rootDir>/src/**/**/*.test.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"!node_modules",
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"src/mocks",
"src/router",
"src/lib",
"src/index.js",
"src/database"
]
},
"resolutions": {
"semver": "~7.5.2",
"msw/path-to-regexp": "^6.3.0",
"express/path-to-regexp": "0.1.12",
"cross-spawn": "^7.0.6",
"micromatch": "4.0.8"
}
}