Initial commit of calendar service

This commit is contained in:
2024-01-10 12:54:30 -05:00
parent 533cf84433
commit 2d779061cd
12 changed files with 3644 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "calendar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --pretty --respawn ./src/app.ts",
"build": "tsc -p ./",
"dist": "node ./dist/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-holidays": "^3.23.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"luxon": "^3.4.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/luxon": "^3.3.8",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}