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

2
.gitattributes vendored Normal file
View file

@ -0,0 +1,2 @@
# Tell Linguist to exclude HTML files to help Replit language detection.
*.html linguist-vendored

1
.prettierignore Normal file
View file

@ -0,0 +1 @@
.replit

10
.replit
View file

@ -1,2 +1,10 @@
language = "nodejs"
run = "npm start" run = "npm start"
entrypoint = "server.js"
[packager]
language = "nodejs"
[packager.features]
packageSearch = true
guessImports = true
enabledForHosting = false

1591
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,7 +9,9 @@
"dependencies": { "dependencies": {
"body-parser": "^1.15.2", "body-parser": "^1.15.2",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.12.4" "express": "^4.12.4",
"mongodb": "~3.6.0",
"mongoose": "~5.4.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",