Development
Follow these steps to install and set up the Orisa project.
Installing NPM modules
Start by navigating to the directory where your Orisa folder is located. To execute the package.json file, use the command below:
npm install
Start Server
npm run dev
The website will open in your browser at: http://localhost:3000
package.json
{
"name": "orisa-nextjs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"refactor-imports": "node scripts/refactor-react-imports.js",
"lint:fix": "next lint --fix"
},
"dependencies": {
"bootstrap": "^5.3.3",
"gsap": "^3.12.7",
"isotope-layout": "^3.0.6",
"next": "^16.1.6",
"react": "^19",
"react-dom": "^19",
"react-fast-marquee": "^1.6.5",
"split-text": "^1.0.0",
"swiper": "^11.2.5",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/isotope-layout": "^3.0.14",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.0.3",
"typescript": "^5"
}
}