-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "lfc-ticket-parser",
"version": "1.0.3",
"description": "Application to parse the Liverpool FC Ticket Availability page and give up-to-date details of sale dates and criteria.",
"main": "src/index.ts",
"scripts": {
"build": "tsc --build",
"build:aws": "tsc --build && node ./build.mjs",
"start": "tsc --build && node dist/index.js",
"test": "jest",
"docs": "npx typedoc --disableSources",
"lint": "npx eslint src/**/*.ts"
},
"author": "Alasdair Peacock",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.0",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"nodemailer-mock": "^2.0.6",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.637.0",
"@aws-sdk/lib-dynamodb": "^3.637.0",
"@types/nodemailer": "^6.4.15",
"archiver": "^7.0.1",
"aws-sdk-client-mock": "^4.0.1",
"dotenv": "^16.4.5",
"ics": "^3.7.6",
"nodemailer": "^6.9.14"
}
}