Started with Mongo

This commit is contained in:
Riccardo
2021-01-02 13:11:59 +01:00
parent 5294122f61
commit 30407cac0a
41 changed files with 33775 additions and 0 deletions

30
server/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "server",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"dependencies": {
"apollo-server": "^2.19.0",
"apollo-server-express": "^2.19.1",
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^14.7.0",
"graphql-tools": "^7.0.2",
"jsonwebtoken": "8.5.1",
"migrate": "^1.7.0",
"mocha": "^8.2.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.9",
"node-migrate": "^0.1.0"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}