Not sure if FCC is parsing my package json file, can confirm mongoose is connected

Tell us what’s happening:
Describe your issue in detail here.

Simply put, the below is not recognized by FCC’s submission svc:
package.json

 "dependencies": {
        "body-parser": "^1.15.2",
        "dotenv": "^8.2.0",
        "express": "^4.12.4",
        "mongodb": "^4.1.1",
        "mongoose": "^6.0.2"
    },

I was able to confirm connecting to mongodb locally and via replit
below is the relevant myApp.js snippet:

const mongoose = require('mongoose');

const dbconn = mongoose.connect(
  process.env.MONGO_URI,  
  {useNewUrlParser: true, useUnifiedTopology: true}
);

Your project link(s)

solution: https://replit.com/@sun_wukong/boilerplate-mongomongoose

Please do point out anything that may be amiss, pretty confident I may be overlooking things. Ty for any & all help

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36

Challenge: Install and Set Up Mongoose

Link to the challenge:

Upon further review, I refactored by updating my MongoDB User’s password. Sorry to trouble you

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.