@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 # Set working directory
WORKDIR /app WORKDIR /app
# Copy package files # Enable Yarn
COPY package*.json ./ RUN corepack enable
# Install dependencies # Copy package files
RUN npm ci COPY package.json yarn.lock* ./
# Install dependencies with Yarn
RUN yarn install --frozen-lockfile
# Copy the rest of the application # Copy the rest of the application
COPY . . COPY . .
# Build the application # Build the application
RUN npm run build
# Expose the port the app runs on # Expose the port the app runs on
EXPOSE 3000 EXPOSE 3000
# Start the application in production mode by default # 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" "icons": "node scripts/generate-icons.js"
}, },
"dependencies": { "dependencies": {
"@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6", "@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-slot": "^1.1.2", "@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tabs": "^1.1.3", "@radix-ui/react-tabs": "1.0.3",
"@radix-ui/react-toast": "^1.2.6", "@radix-ui/react-toast": "1.1.5",
"@types/mongoose": "^5.11.97", "@types/mongoose": "5.11.97",
"class-variance-authority": "^0.7.1", "class-variance-authority": "0.7.0",
"clsx": "^2.1.1", "clsx": "2.1.0",
"lucide-react": "^0.323.0", "lucide-react": "0.323.0",
"mongoose": "^8.10.0", "mongoose": "8.1.0",
"next": "^14.1.0", "next": "14.1.0",
"next-auth": "^4.24.11", "next-auth": "4.24.5",
"next-themes": "^0.4.4", "next-themes": "0.2.1",
"react": "^18.2.0", "react": "18.2.0",
"react-dom": "^18.2.0", "react-dom": "18.2.0",
"sharp": "^0.33.2", "sharp": "0.33.2",
"tailwind-merge": "^2.6.0", "tailwind-merge": "2.2.1",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "1.0.7",
"zod": "^3.22.4" "zod": "3.22.4"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.11.16", "@types/node": "20.11.16",
"@types/react": "^18.2.52", "@types/react": "18.2.52",
"@types/react-dom": "^18.2.18", "@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "^6.21.0", "@typescript-eslint/parser": "6.21.0",
"autoprefixer": "^10.4.17", "autoprefixer": "10.4.17",
"eslint": "^8.56.0", "eslint": "8.56.0",
"eslint-config-next": "14.1.0", "eslint-config-next": "14.1.0",
"eslint-config-prettier": "^10.0.1", "eslint-config-prettier": "10.0.1",
"postcss": "^8.4.33", "postcss": "8.4.33",
"tailwindcss": "^3.4.1", "tailwindcss": "3.4.1",
"typescript": "^5.3.3" "typescript": "5.3.3"
} }
} }

3966
yarn.lock Normal file

File diff suppressed because it is too large Load Diff