@radix-ui/react-tabs

This commit is contained in:
Julien Froidefond
2025-02-14 22:46:18 +01:00
parent 717c6b8d1b
commit f5216a0cd2
4 changed files with 4004 additions and 7323 deletions

View File

@@ -4,20 +4,22 @@ FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Enable Yarn
RUN corepack enable
# Install dependencies
RUN npm ci
# Copy package files
COPY package.json yarn.lock* ./
# Install dependencies with Yarn
RUN yarn install --frozen-lockfile
# Copy the rest of the application
COPY . .
# Build the application
RUN npm run build
# Expose the port the app runs on
EXPOSE 3000
# Start the application in production mode by default
CMD ["npm", "start"]
CMD ["yarn", "dev"]

7287
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,38 +10,38 @@
"icons": "node scripts/generate-icons.js"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@types/mongoose": "^5.11.97",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.323.0",
"mongoose": "^8.10.0",
"next": "^14.1.0",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tabs": "1.0.3",
"@radix-ui/react-toast": "1.1.5",
"@types/mongoose": "5.11.97",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"lucide-react": "0.323.0",
"mongoose": "8.1.0",
"next": "14.1.0",
"next-auth": "4.24.5",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "0.33.2",
"tailwind-merge": "2.2.1",
"tailwindcss-animate": "1.0.7",
"zod": "3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"@types/node": "20.11.16",
"@types/react": "18.2.52",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^10.0.1",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
"eslint-config-prettier": "10.0.1",
"postcss": "8.4.33",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
}
}

3966
yarn.lock Normal file

File diff suppressed because it is too large Load Diff