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:
parent
85b61feffb
commit
b8030ddf2a
5 changed files with 1658 additions and 450 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Tell Linguist to exclude HTML files to help Replit language detection.
|
||||||
|
*.html linguist-vendored
|
1
.prettierignore
Normal file
1
.prettierignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.replit
|
10
.replit
10
.replit
|
@ -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
1591
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue