forecastAppBackend/package.json

45 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2024-07-13 13:33:19 +00:00
{
"name": "manifold-financial-forecast",
"version": "1.0.0",
"description": "an application for predictive cash flow within a given period",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldcomputers/financial-forecast.git"
},
"author": "Liassidji Abiodun Manasseh",
"license": "ISC",
"bugs": {
"url": "https://github.com/manifoldcomputers/financial-forecast/issues"
},
"homepage": "https://github.com/manifoldcomputers/financial-forecast#readme",
"dependencies": {
"@fastify/auth": "^3.0.2",
"@fastify/cors": "^8.0.0",
"@fastify/formbody": "^7.0.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"dotenv-load": "^2.0.1",
"exceljs": "^4.3.0",
"fastify": "^4.2.0",
"fastify-axios": "^1.2.5",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.19",
"path": "^0.12.7",
"sequelize": "^6.21.3",
"uuid": "^8.3.2"
}
}