This commit is contained in:
TheGreyDiamond
2021-07-06 14:13:14 +02:00
parent bc2a66236e
commit 0dfd47e258
10 changed files with 2671 additions and 1158 deletions

View File

@ -4,8 +4,13 @@
"description": "The elevatormap rewritten",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "node index.js"
"makeJS": "tsc index.ts",
"lint": "eslint . --ext .ts",
"makeJSwatch": "tsc -w index.ts",
"start": "tsc index.ts && node index.js",
"preChecks": "npm outdated && npm audit",
"startBeforeMerge": "eslint . --ext .ts && tsc index.ts && node index.js",
"nodemon": "nodemon index.js"
},
"repository": {
"type": "git",
@ -20,14 +25,23 @@
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"eta": "^1.12.1",
"eta": "^1.12.2",
"express": "^4.17.1",
"express-session": "^1.17.2",
"greeting-time": "^1.0.0",
"hcaptcha": "0.0.2",
"helmet": "^4.6.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemailer": "^6.6.1",
"nodemailer": "^6.6.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.26.0",
"eslint-config-strongloop": "^2.1.0",
"typescript": "^4.2.4"
}
}