svrjs-nextjs-website/package.json

94 lines
2.6 KiB
JSON
Raw Normal View History

2024-06-15 14:55:33 +02:00
{
"name": "svrjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2024-07-20 21:29:50 +02:00
"lint": "next lint",
"prepare": "husky",
2024-09-07 08:39:07 +02:00
"cz": "cz",
2024-07-20 21:29:50 +02:00
"build-mdx": "node scripts/build-mdx.js"
2024-06-15 14:55:33 +02:00
},
"dependencies": {
2024-08-24 06:28:25 +02:00
"@hcaptcha/react-hcaptcha": "^1.11.0",
2024-06-20 17:37:45 +02:00
"@hookform/resolvers": "^3.6.0",
2024-08-01 16:32:57 +02:00
"@mdx-js/mdx": "^3.0.1",
2024-08-26 13:11:47 +02:00
"@monaco-editor/react": "^4.6.0",
2024-08-08 11:21:56 +02:00
"@portabletext/react": "^3.1.0",
2024-08-24 06:28:25 +02:00
"@portabletext/to-html": "^2.0.13",
2024-06-15 18:41:36 +02:00
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
2024-07-31 20:43:04 +02:00
"@radix-ui/react-dropdown-menu": "^2.1.1",
2024-06-20 17:37:45 +02:00
"@radix-ui/react-label": "^2.1.0",
2024-06-15 14:55:33 +02:00
"@radix-ui/react-navigation-menu": "^1.1.4",
2024-07-31 20:43:04 +02:00
"@radix-ui/react-select": "^2.1.1",
2024-07-28 12:52:13 +02:00
"@radix-ui/react-separator": "^1.1.0",
2024-06-20 17:37:45 +02:00
"@radix-ui/react-slot": "^1.1.0",
2024-07-03 19:29:49 +02:00
"@radix-ui/react-toast": "^1.2.1",
2024-06-15 14:55:33 +02:00
"@radix-ui/themes": "^3.0.5",
2024-08-26 17:26:02 +02:00
"@sanity/code-input": "^4.1.4",
2024-08-08 11:21:56 +02:00
"@sanity/image-url": "^1.0.2",
2024-08-08 11:27:42 +02:00
"@sanity/vision": "^3.53.0",
2024-06-30 20:42:13 +02:00
"@tailwindcss/typography": "^0.5.13",
2024-06-27 11:12:28 +02:00
"@types/bcrypt": "^5.0.2",
2024-06-20 15:38:05 +02:00
"@types/cookie": "^0.6.0",
2024-06-24 10:02:18 +02:00
"@types/mdx": "^2.0.13",
2024-07-03 19:29:49 +02:00
"@types/nodemailer": "^6.4.15",
"@uiw/react-md-editor": "^4.0.4",
2024-06-20 19:46:48 +02:00
"@uploadthing/react": "^6.6.0",
2024-08-26 15:45:51 +02:00
"@vercel/analytics": "^1.3.1",
2024-06-27 11:12:28 +02:00
"bcrypt": "^5.1.1",
2024-06-15 14:55:33 +02:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
2024-06-20 15:38:05 +02:00
"cookie": "^0.6.0",
2024-06-15 14:55:33 +02:00
"framer-motion": "^11.2.10",
"gray-matter": "^4.0.3",
2024-06-15 14:55:33 +02:00
"lucide-react": "^0.394.0",
"mini-svg-data-uri": "^1.4.4",
2024-06-20 19:46:48 +02:00
"mongoose": "^8.4.3",
2024-06-26 21:47:18 +02:00
"next-auth": "^4.24.7",
"next-mdx-remote": "^5.0.0",
2024-08-08 11:21:56 +02:00
"next-sanity": "^9.4.4",
2024-06-15 14:55:33 +02:00
"next-themes": "^0.3.0",
2024-06-24 10:02:18 +02:00
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
2024-07-03 19:29:49 +02:00
"nodemailer": "^6.9.14",
2024-08-26 17:26:02 +02:00
"prismjs": "^1.29.0",
2024-06-15 14:55:33 +02:00
"react": "^18",
"react-dom": "^18",
2024-06-20 17:37:45 +02:00
"react-hook-form": "^7.52.0",
2024-07-01 09:56:01 +02:00
"react-markdown": "^9.0.1",
2024-08-24 06:28:25 +02:00
"rss": "^1.2.2",
2024-06-15 14:55:33 +02:00
"tailwind-merge": "^2.3.0",
2024-06-20 17:37:45 +02:00
"tailwindcss-animate": "^1.0.7",
2024-06-20 19:46:48 +02:00
"uploadthing": "^6.12.0",
2024-06-20 17:37:45 +02:00
"zod": "^3.23.8"
2024-06-15 14:55:33 +02:00
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
2024-06-15 14:55:33 +02:00
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-08-24 06:28:25 +02:00
"@types/rss": "^0.0.32",
2024-09-07 08:39:07 +02:00
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
2024-06-15 14:55:33 +02:00
"eslint": "^8",
"eslint-config-next": "14.2.3",
"husky": "^9.1.5",
2024-08-24 06:28:25 +02:00
"i": "^0.3.7",
"lint-staged": "^15.2.10",
2024-08-24 06:28:25 +02:00
"npm": "^10.8.2",
2024-06-15 14:55:33 +02:00
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
2024-09-07 08:39:07 +02:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
2024-06-15 14:55:33 +02:00
}
}