File size: 2,447 Bytes
1067b6f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | {
"name": "one-stop-shop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tailwind": "npx tailwindcss -i ./styles/globals.css -o ./tailwind-dist/output.css --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"db:migrate": "npx drizzle-kit migrate",
"db:seed": "docker compose exec db sh -lc \"mysql -u root -proot onestopshop < /team_seed.sql\"",
"db:setup": "npm run db:migrate && npm run db:seed"
},
"dependencies": {
"@clerk/nextjs": "^4.17.1",
"@next/mdx": "^14.2.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.1.3",
"@stripe/react-stripe-js": "^2.1.0",
"@stripe/stripe-js": "^1.53.0",
"@tanstack/react-table": "^8.9.1",
"@types/node": "18.15.11",
"@types/react": "^18.2.10",
"@types/react-dom": "^18.2.4",
"@uploadthing/react": "^6.7.2",
"@upstash/ratelimit": "^0.4.3",
"@upstash/redis": "^1.20.6",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.5.2",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"drizzle-orm": "^0.45.1",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"lucide-react": "^0.162.0",
"mysql2": "^3.9.7",
"next": "^14.2.4",
"postcss": "^8.5.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"stripe": "^12.6.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.1",
"typescript": "^5.1.3",
"uploadthing": "^6.13.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addon-styling": "^1.0.1",
"@storybook/blocks": "^8.6.14",
"@storybook/nextjs": "^10.1.8",
"@storybook/react": "^10.1.8",
"@storybook/testing-library": "^0.0.14-next.2",
"drizzle-kit": "^0.31.8",
"eslint-plugin-storybook": "^0.6.11",
"storybook": "^7.0.6",
"tailwindcss-animate": "^1.0.7"
}
}
|