Initial commit

This commit is contained in:
Ben Elferink
2020-12-21 23:03:50 +02:00
commit ad0098bc7c
14 changed files with 155 additions and 0 deletions

18
server/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "server",
"version": "0.1.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon index.js"
},
"author": "Ben Elferink",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.8",
"nodemon": "^2.0.6"
}
}