InstallationFrontend InstallationInstall Dependencies

Install Dependencies

To get started with the ArtVault frontend, you need to install the required dependencies. These packages include Next.js, React, TailwindCSS, and the Thirdweb SDK for blockchain integration.

steps

  1. Navigate to the /client directory of the project.

  2. Run the following command to install all necessary dependencies

pnpm install

This will install all the packages listed in package.json, including:

  • next@14: For building the application with React.

  • react, react-dom: Core React dependencies.

  • tailwindcss, postcss, autoprefixer: For styling the app using TailwindCSS.

  • @thirdweb-dev/react, @thirdweb-dev/sdk: For interacting with the Ethereum blockchain and managing NFTs.

Once the installation is complete, you'll be ready to the next step.

On this page