-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "@govtechsg/singpass-myinfo-oidc-helper",
"version": "8.4.4",
"description": "Helper for building a Relying Party to integrate with Singpass OIDC and MyInfo person basic API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github:GovTechSG/singpass-myinfo-oidc-helper",
"bugs": "https://github.com/GovTechSG/singpass-myinfo-oidc-helper/issues",
"license": "MIT",
"scripts": {
"prepare": "npx husky",
"prepublishOnly": "npm run build",
"test": "./shared-scripts/jest-test-unit-integration.sh",
"test:ext": "./shared-scripts/jest-test-external.sh",
"lint": "./shared-scripts/es-lint.sh './**/*.ts'",
"build": "./scripts/build.sh",
"generate-myinfo-typings": "ts-node --project ./shared-config/script.tsconfig.json ./scripts/generate-myinfo-typings"
},
"lint-staged": {
"*.ts": [
"./shared-scripts/es-lint.sh"
]
},
"dependencies": {
"@js-joda/core": "^5.6.1",
"@js-joda/timezone": "^2.18.2",
"axios": "~1.7.4",
"https-proxy-agent": "^7.0.3",
"is-base64": "^1.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"node-jose": "^2.2.0",
"nonce": "^1.0.4",
"proxy-agent": "^6.4.0",
"rosie": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.15",
"@types/node-jose": "^1.1.13",
"@types/rosie": "0.0.45",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"dotenv": "^16.4.3",
"dtsgenerator": "^3.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.24.0",
"handlebars": "^4.7.8",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-bamboo-reporter": "^1.3.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"nock": "^13.5.1",
"prettier": "^3.2.5",
"shelljs": "~0.8.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}