-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.02 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
{
"name": "donate-to-educate-backend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "npm run build && docker-compose up --build --force-recreate -d && npm start --prefix ./scripts/",
"build": "serverless package",
"lint": "biome lint --error-on-warnings ./src",
"compile": "tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"prepare": "is-ci || husky",
"codegen": "graphql-codegen",
"format": "biome check --write ."
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched",
"biome check --write --organize-imports-enabled=false --no-errors-on-unmatched",
"biome check --write --unsafe --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CapgeminiInventUK/educate-for-good-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CapgeminiInventUK/educate-for-good-backend/issues"
},
"homepage": "https://github.com/CapgeminiInventUK/educate-for-good-backend#readme",
"dependencies": {
"@aws-sdk/client-sesv2": "3.658.1",
"@middy/core": "^5.4.5",
"@middy/error-logger": "^5.4.5",
"@middy/http-content-encoding": "^5.4.5",
"@middy/http-content-negotiation": "^5.4.5",
"@middy/http-response-serializer": "^5.4.5",
"@middy/http-security-headers": "^5.4.5",
"@sparticuz/chromium-min": "127.0.0",
"@types/proj4": "2.5.5",
"adm-zip": "0.5.16",
"aws-sdk": "2.1691.0",
"aws4": "1.13.2",
"axios": "1.7.7",
"csv-parse": "5.5.6",
"is-ci": "3.0.1",
"mongodb": "6.9.0",
"mongoose": "8.6.1",
"object-sizeof": "^2.6.5",
"pino": "9.4.0",
"proj4": "2.14.0",
"puppeteer-core": "23.4.1",
"randomstring": "1.3.0",
"sharp": "0.33.5",
"uuid": "10.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.1",
"@shelf/jest-mongodb": "4.3.2",
"@types/adm-zip": "0.5.6",
"@types/aws-lambda": "8.10.145",
"@types/jest": "29.5.14",
"@types/node": "20.17.4",
"@types/randomstring": "1.3.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"esbuild": "0.20.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"serverless": "3.39.0",
"serverless-esbuild": "1.52.1",
"serverless-localstack": "1.2.1",
"serverless-offline": "13.8.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}