This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
qoverflow/server/package.json
2022-08-16 18:08:46 -05:00

27 lines
659 B
JSON

{
"name": "server",
"version": "1.0.0",
"private": true,
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.5",
"morgan": "^1.10.0",
"node-cron": "^3.0.1",
"pm2": "^5.2.0",
"superagent": "^8.0.0",
"superagent-throttle": "^1.0.1"
},
"scripts": {
"start": "nodemon ./bin/www",
"prod": "pm2 start ./bin/www"
},
"devDependencies": {
"nodemon": "^2.0.19",
"supertest": "^6.2.4"
}
}