This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.65 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "api-notarize-healthcerts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"engines": {
"npm": ">=8"
},
"scripts": {
"dev": "cross-env VPC_NAME=dummy DEBUG=api-notarize-healthcerts:* IS_OFFLINE=true STAGE=dev sls offline",
"invoke-local:notarisePdt": "cross-env ./scripts/invoke-notarisePdt.sh",
"deploy": "sls deploy",
"depcheck": "depcheck . --ignores=\"serverless-*\"",
"sls-config-check": "sls print --account_id PLACEHOLDER",
"test": "cross-env IS_OFFLINE=true jest --silent=false --coverage --collectCoverageFrom='./src/**' --collectCoverageFrom=!./src/**/*.json",
"test:ci": "sls offline start --exec 'npm run test && npm run test:integration && npm run test:e2e'",
"test:watch": "npm run test -- --watch",
"test:integration": "cross-env IS_OFFLINE=true jest --testPathPattern=test/integration",
"test:e2e": "jest --testPathPattern=test/e2e",
"lint": "eslint . --ext ts,js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"gen:input": "npx ts-node -r dotenv/config scripts/generateInputHealthCert.ts",
"setup": "cross-env ./scripts/setup.sh",
"teardown": "cross-env docker-compose down",
"script:merge": "npx ts-node scripts/mergeProviderJsons.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.39",
"@aws-sdk/client-ssm": "^3.540.0",
"@govtechsg/oa-schemata": "^1.18.2",
"@govtechsg/oa-verify": "^8.0.0",
"@govtechsg/open-attestation": "^6.6.0",
"@middy/core": "^4.7.0",
"@middy/http-error-handler": "^4.7.0",
"@middy/http-json-body-parser": "^4.7.0",
"@middy/ssm": "^4.7.0",
"@notarise-gov-sg/eu-dcc-generator": "^2.0.0",
"@notarise-gov-sg/gpay-covid-cards": "^1.0.7",
"@notarise-gov-sg/sns-notify-recipients": "^1.6.0",
"@notarise-gov-sg/transient-storage-lib": "^0.3.6",
"@pathcheck/dcc-sdk": "^0.0.27",
"@slack/webhook": "^7.0.2",
"@tsconfig/node18": "^1.0.3",
"@types/url-join": "^4.0.3",
"aws-sdk": "^2.1590.0",
"aws-xray-sdk-core": "^3.6.0",
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"fhir": "^4.12.0",
"file-loader": "^6.2.0",
"file-type": "^16.5.4",
"fs-extra": "^10.1.0",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"runtypes": "^6.7.0",
"serialize-error": "^8.1.0",
"serverless": "^3.38.0",
"serverless-associate-waf": "^1.2.1",
"serverless-bundle": "^6.1.0",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5",
"url-join": "^4.0.1",
"uuid": "^8.3.2",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@govtechsg/serverless-selective-functions": "^1.1.0",
"@types/aws-lambda": "^8.10.136",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"jest-raw-loader": "^1.0.1",
"prettier": "^2.8.8",
"serverless-attach-permission-boundary": "^0.1.0",
"serverless-domain-manager": "^7.3.8",
"serverless-offline": "^12.0.4",
"serverless-offline-ssm": "^6.2.0",
"serverless-stack-termination-protection": "^2.0.2",
"serverless-vpc-discovery": "^4.1.0"
},
"overrides": {
"axios": "^1.6.8"
}
}