Data Architecture—Step 2: Install Dependencies - Woz-U-Group-Projects/team-the-grinchs-posse GitHub Wiki
Installing Dependencies to Build and Maintain Data Store
by Robert Hieger
In theory, all back-end dependencies, including those associated with building and maintaining the giftWishes database, are found in the package.json file, as shown in Fig. 1.
Fig. 1: Contents of package.json
As a result, all that is necessary is to navigate to the project root directory:
team-the-grinchs-posse/
Then, in Visual Studio Code's terminal window, run npm install
as shown in Fig. 2.
Fig. 2: Run
npm install
in project root
Now you can proceed to Step 3.