-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.17 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 4.17 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
98
99
100
101
102
{
"name": "data-analytics-platform",
"version": "0.0.1",
"description": "Data and Analytics platform which will enable the implementation of the OneLogin reporting strategy",
"license": "MIT",
"repository": "github:govuk-one-login/data-analytics-platform",
"type": "module",
"engines": {
"node": "24"
},
"devDependencies": {
"@aws-lambda-powertools/logger": "^2.31.0",
"@aws-lambda-powertools/metrics": "^2.31.0",
"@aws-sdk/client-athena": "^3.990.0",
"@aws-sdk/client-cloudwatch-logs": "^3.990.0",
"@aws-sdk/client-cognito-identity-provider": "^3.990.0",
"@aws-sdk/client-eventbridge": "^3.990.0",
"@aws-sdk/client-firehose": "^3.990.0",
"@aws-sdk/client-lambda": "^3.990.0",
"@aws-sdk/client-quicksight": "^3.990.0",
"@aws-sdk/client-redshift-data": "^3.990.0",
"@aws-sdk/client-redshift-serverless": "^3.990.0",
"@aws-sdk/client-s3": "^3.990.0",
"@aws-sdk/client-secrets-manager": "^3.990.0",
"@aws-sdk/client-sfn": "^3.990.0",
"@aws-sdk/client-sns": "^3.990.0",
"@aws-sdk/client-sqs": "^3.990.0",
"@aws-sdk/client-ssm": "^3.990.0",
"@aws-sdk/types": "^3.821.0",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.3.0",
"@smithy/util-retry": "^4.4.3",
"@tsconfig/node24": "^24.0.0",
"@types/aws-lambda": "^8.10.160",
"@types/tar": "^6.1.13",
"@types/uuid": "^11.0.0",
"@vitest/coverage-v8": "^4.1.5",
"aws-sdk-client-mock": "^4.1.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^17.3.0",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"knex": "^3.1.0",
"lint-staged": "^16.2.7",
"pg": "^8.18.0",
"prettier": "^3.8.1",
"prettier-plugin-sh": "^0.18.0",
"tar": "^7.5.11",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"uuid": "^14.0.0",
"vitest": "^4.1.5"
},
"scripts": {
"build": "scripts/build-lambdas.sh",
"build-etl:local": "scripts/build-and-deploy-etl.sh dev local",
"build-etl": "scripts/build-and-deploy-etl.sh",
"lint:check": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"test": "vitest run --reporter=verbose",
"test:cov": "vitest run --coverage",
"iac:build": "scripts/build-sam-template.sh",
"iac:buildall": "scripts/build-sam-templates.sh",
"iac:lint": "npm run iac:buildall && find iac-dist -maxdepth 1 -type f -print0 | xargs -0 -n1 sam validate --lint --region eu-west-2 --template-file",
"iac:scan": "npm run iac:buildall && checkov --config-file .checkov.local.yml --directory iac-dist --quiet",
"iac:format:check": "prettier --check iac",
"iac:format:fix": "prettier --write iac",
"scripts:format:check": "prettier --check scripts",
"scripts:format:fix": "prettier --write scripts",
"husky:install": "husky",
"test:integration": "vitest run --config ./tests/integration-tests/vitest.config.unified.ts",
"test:integration:ci": "vitest run --config ./tests/integration-tests/vitest.config.unified.ts",
"test:integration:main": "vitest run --config ./tests/integration-tests/vitest.config.main-test-suite.ts",
"test:integration:raw-to-stage-unhappy": "vitest run --config ./tests/integration-tests/vitest.config.raw-to-stage-unhappy-path.ts",
"test:e2e:rp-onboarding": "vitest run --config ./tests/e2e-tests/vitest.config.rp-onboarding.ts",
"test:e2e:rp-onboarding:check-only": "vitest run --config ./tests/e2e-tests/vitest.config.rp-onboarding-check-only.ts",
"test:e2e:event-onboarding": "vitest run --config ./tests/e2e-tests/vitest.config.event-onboarding.ts",
"test:e2e:event-onboarding:check-only": "vitest run --config ./tests/e2e-tests/vitest.config.event-onboarding-check-only.ts",
"test:e2e:regression": "vitest run --config ./tests/e2e-tests/vitest.config.e2e-regression.ts"
},
"lint-staged": {
"*": "prettier --write",
"*.{js,ts}": "eslint --fix",
"*.py": [
"reindent",
"black",
"isort",
"pyupgrade",
"mypy",
"flake8",
"pydocstyle"
]
},
"dependencies": {
"@aws-sdk/client-sts": "^3.990.0"
}
}