backend_adaptive_learning/package.json

43 lines
1.5 KiB
JSON
Raw Normal View History

2024-08-12 02:44:06 +00:00
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2024-11-04 04:33:57 +00:00
"start": "node index.js",
2024-10-14 01:23:37 +00:00
"api-start": "nodemon index.js",
"db:create": "npx sequelize-cli db:create --config config/config.js",
"db:drop": "npx sequelize-cli db:drop --config config/config.js",
2024-10-14 01:23:37 +00:00
"db:migrate": "npx sequelize-cli db:migrate --migrations-path database/migrations --config config/config.js",
"db:seed": "npx sequelize-cli db:seed:all --seeders-path database/seeders --config config/config.js",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo --migrations-path database/migrations --config config/config.js",
"db:seed:undo": "npx sequelize-cli db:seed:undo --seeders-path database/seeders --config config/config.js",
"migrate:generate": "node generateMigration.js",
"seed:generate": "node generateSeed.js"
2024-08-12 02:44:06 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2024-11-04 04:33:57 +00:00
"bcryptjs": "^2.4.3",
2024-08-12 02:44:06 +00:00
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
2024-10-28 02:36:05 +00:00
"csv-writer": "^1.6.0",
2024-08-12 02:44:06 +00:00
"dotenv": "^16.4.5",
"express": "^4.19.2",
2024-10-28 09:18:25 +00:00
"express-prom-bundle": "^8.0.0",
2024-08-12 02:44:06 +00:00
"jsonwebtoken": "^9.0.2",
2024-09-13 13:03:35 +00:00
"moment-timezone": "^0.5.45",
2024-08-12 02:44:06 +00:00
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.0",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
2024-10-28 09:18:25 +00:00
"prom-client": "^15.1.3",
2024-10-14 01:23:37 +00:00
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"uuid": "^10.0.0"
2024-08-12 02:44:06 +00:00
}
}