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 @@
|
||||||
|
run = "npm start"
|
||||||
|
entrypoint = "server.js"
|
||||||
|
|
||||||
|
[packager]
|
||||||
language = "nodejs"
|
language = "nodejs"
|
||||||
run = "npm start"
|
|
||||||
|
[packager.features]
|
||||||
|
packageSearch = true
|
||||||
|
guessImports = true
|
||||||
|
enabledForHosting = false
|
2047
package-lock.json
generated
2047
package-lock.json
generated
File diff suppressed because it is too large
Load diff
48
package.json
48
package.json
|
@ -1,24 +1,26 @@
|
||||||
{
|
{
|
||||||
"name": "fcc-mongo-mongoose-challenges",
|
"name": "fcc-mongo-mongoose-challenges",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "A boilerplate project",
|
"description": "A boilerplate project",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server.js"
|
"start": "node server.js"
|
||||||
},
|
},
|
||||||
"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",
|
||||||
"repository": {
|
"mongoose": "~5.4.0"
|
||||||
"type": "git",
|
},
|
||||||
"url": "https://github.com/freeCodeCamp/boilerplate-mongomongoose.git"
|
"repository": {
|
||||||
},
|
"type": "git",
|
||||||
"keywords": [
|
"url": "https://github.com/freeCodeCamp/boilerplate-mongomongoose.git"
|
||||||
"node",
|
},
|
||||||
"mongoose",
|
"keywords": [
|
||||||
"express"
|
"node",
|
||||||
],
|
"mongoose",
|
||||||
"license": "MIT"
|
"express"
|
||||||
}
|
],
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue