Created
December 11, 2024 15:21
-
-
Save yehonatan56/a4805b22ba7f7f7b45bcc9947b8630af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "server", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "src/app.ts", | |
| "scripts": { | |
| "start": "node dist/app.js", | |
| "build": "tsc", | |
| "watch": "nodemon src/app.ts", | |
| "test": "jest --watchAll --detectOpenHandles", | |
| "migrate-mongo:init": "migrate-mongo init", | |
| "migrate-mongo:up": "migrate-mongo up", | |
| "migrate-mongo:down": "migrate-mongo down", | |
| "migrate-mongo:status": "migrate-mongo status", | |
| "migrate-mongo:create": "migrate-mongo create purchase field" | |
| }, | |
| "author": "", | |
| "license": "ISC", | |
| "dependencies": { | |
| "bcrypt": "^5.1.1", | |
| "body-parser": "^1.20.3", | |
| "cloudinary": "^2.5.1", | |
| "cookie-parser": "^1.4.6", | |
| "cors": "^2.8.5", | |
| "dotenv": "^16.4.5", | |
| "express": "^4.21.0", | |
| "express-fileupload": "^1.5.1", | |
| "express-session": "^1.18.0", | |
| "jsonwebtoken": "^9.0.2", | |
| "migrate-mongo": "^11.0.0", | |
| "mongoose": "^8.6.2", | |
| "morgan": "^1.10.0", | |
| "multer": "^1.4.5-lts.1", | |
| "multer-storage-cloudinary": "^4.0.0", | |
| "nodemailer": "^6.9.15", | |
| "passport": "^0.7.0", | |
| "passport-local": "^1.0.0", | |
| "path": "^0.12.7", | |
| "qrcode-terminal": "^0.12.0", | |
| "uuid": "^11.0.3", | |
| "whatsapp-web.js": "^1.26.0", | |
| "winston": "^3.16.0", | |
| "winston-daily-rotate-file": "^5.0.0" | |
| }, | |
| "devDependencies": { | |
| "@types/bcrypt": "^5.0.2", | |
| "@types/body-parser": "^1.19.5", | |
| "@types/cookie-parser": "^1.4.7", | |
| "@types/cors": "^2.8.17", | |
| "@types/dotenv": "^8.2.0", | |
| "@types/express": "^5.0.0", | |
| "@types/jest": "^29.5.13", | |
| "@types/jsonwebtoken": "^9.0.7", | |
| "@types/mongoose": "^5.11.97", | |
| "@types/morgan": "^1.9.9", | |
| "@types/multer": "^1.4.12", | |
| "@types/node": "^22.10.1", | |
| "@types/supertest": "^6.0.2", | |
| "@types/winston": "^2.4.4", | |
| "jest": "^29.7.0", | |
| "nodemon": "^3.1.6", | |
| "prettier": "^3.3.3", | |
| "supertest": "^7.0.0", | |
| "ts-jest": "^29.2.5", | |
| "ts-node": "^10.9.2", | |
| "tsx": "^4.19.2", | |
| "typescript": "^5.7.2" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment