Essential backend functionality, including logins.

This commit is contained in:
2019-08-21 12:52:12 +02:00
parent d2168ab4a0
commit 99f2c5e7d8
14 changed files with 3965 additions and 1 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "BiblIO",
"version": "1.0.0",
"description": "The backend of PVV's integrated library system.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"nodemon": "^1.19.0"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"mongoose": "^5.5.9"
}
}