fix(config/lockfile): update config and lockfile (#46)

* fix(config/lockfile): update config and lockfile

* fix(deps): add mongodb and mongoose to dependencies

* chore(format): prettier, add .prettierignore

* fix(config): add .gitattributes
This commit is contained in:
Lasse Jørgensen 2022-07-15 23:45:08 +02:00 committed by GitHub
parent 85b61feffb
commit b8030ddf2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1658 additions and 450 deletions

View file

@ -1,24 +1,26 @@
{
"name": "fcc-mongo-mongoose-challenges",
"version": "0.0.1",
"description": "A boilerplate project",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^8.2.0",
"express": "^4.12.4"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/boilerplate-mongomongoose.git"
},
"keywords": [
"node",
"mongoose",
"express"
],
"license": "MIT"
}
"name": "fcc-mongo-mongoose-challenges",
"version": "0.0.1",
"description": "A boilerplate project",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^8.2.0",
"express": "^4.12.4",
"mongodb": "~3.6.0",
"mongoose": "~5.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/boilerplate-mongomongoose.git"
},
"keywords": [
"node",
"mongoose",
"express"
],
"license": "MIT"
}