Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty committed Jun 9, 2024
0 parents commit 9150d11
Show file tree
Hide file tree
Showing 63 changed files with 7,695 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# public/robots*
public/rss*
public/sitemap*
.contentlayer

# dependencies
/node_modules
/.pnp
.pnp.js
test-ledger

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env
.env*.local

# vercel
.vercel
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"spellright.language": ["en_US"],
"spellright.documentTypes": ["markdown", "latex", "plaintext", "javascript"],
"cSpell.words": [
"backlinks",
"lockscreen",
"mailchimp",
"opensource",
"pubkey",
"signup",
"signups",
"Spacebird",
"xampp"
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# pod.dev
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/styles/globals.css",
"baseColor": "gray",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
92 changes: 92 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/** @type {import('next').NextConfig} */

module.exports = {
reactStrictMode: true,
transpilePackages: ["lucide-react"],
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
compiler: {
styledComponents: true,
},
swcMinify: true,
// webpack5: true,
webpack: config => {
config.resolve.fallback = { fs: false, path: false };

return config;
},
async redirects() {
return [
{
source: "/rss",
destination: "https://feeds.transistor.fm/pod-dev",
permanent: true,
},
{
source: "/spotify",
destination:
"https://open.spotify.com/show/5meBzwbt0vJvTBmv6RroMr?si=4SW7C3wNS_eWYz7YCFfdcw",
permanent: true,
},
{
permanent: true,
source: "/apple",
destination:
"https://podcasts.apple.com/us/podcast/pod-dev-startup-businesses-on-blockchain/id1751165138",
permanent: true,
},
{
source: "/pcast",
destination: "https://pca.st/stfxl3j2",
permanent: true,
},
{
source: "/pocketcasts",
destination: "https://pca.st/stfxl3j2",
permanent: true,
},
{
source: "/youtube",
destination:
"https://www.youtube.com/playlist?list=PLk-EmIiBIYGF6sYMY9uhlC4OnxgKQbB9N",
permanent: true,
},
{
source: "/nick",
destination: "https://x.com/nickfrosty",
permanent: true,
},
{
source: "/nickfrosty",
destination: "https://x.com/nickfrosty",
permanent: true,
},
{
source: "/scott",
destination: "https://x.com/cloakdDev",
permanent: true,
},
{
source: "/cloakd",
destination: "https://x.com/cloakdDev",
permanent: true,
},
{
source: "/cloaked",
destination: "https://x.com/cloakdDev",
permanent: true,
},
];
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
54 changes: 54 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"name": "pod-dot-dev",
"version": "0.1.0",
"private": true,
"author": {
"name": "nickfrosty",
"url": "https://nick.af"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"shadcn": "pnpm dlx shadcn-ui@latest ",
"prettier": "prettier -c \"**/*.{js,jsx,ts,tsx,md,css,md,mdx}\"",
"prettier:fix": "prettier -cw \"**/*.{js,jsx,ts,tsx,md,css,md,mdx}\""
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"fathom-client": "^3.6.0",
"lucide-react": "^0.379.0",
"luxon": "^3.4.4",
"next": "^14.1.0",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.1",
"unified": "^11.0.4",
"vaul": "^0.9.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tailwindcss/typography": "^0.5.10",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.19",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"dotenv": "^16.4.5",
"eslint": "8.56.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.35",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit 9150d11

Please sign in to comment.