31 lines
787 B
JSON
31 lines
787 B
JSON
{
|
|
"name": "tracreport",
|
|
"version": "0.0.1",
|
|
"description": "Collect reports of failed air conditioning on trains",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "npx tsx --watch src/index.ts",
|
|
"report": "npx tsc src/reports/reports.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git.fjla.uk/fred.boniface/tracreport"
|
|
},
|
|
"author": "Frederick Boniface",
|
|
"license": "BSD-3-Clause-No-Military-License",
|
|
"dependencies": {
|
|
"express": "^5.1.0",
|
|
"mongoose": "^8.16.0",
|
|
"nodemailer": "^7.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.3",
|
|
"@types/node": "^24.0.4",
|
|
"@types/nodemailer": "^6.4.17",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|