Files
dashboard/backend/package.json
2020-04-30 23:01:01 +02:00

31 lines
826 B
JSON

{
"name": "simcompanies-dashboard-backend",
"version": "0.1.0",
"description": "The backend for the Sim Companies dashboard providing prices from the database",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "cross-env NODE_ENV=debug nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Oliver Boehlk",
"license": "GPL-3.0",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"http-status": "^1.4.2",
"mysql": "^2.18.1",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"cross-env": "^7.0.2"
}
}