mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 14:48:13 -05:00
104 lines
3.0 KiB
JSON
104 lines
3.0 KiB
JSON
{
|
|
"name": "next-template",
|
|
"version": "0.0.2",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=16.x"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"preview": "next build && next start",
|
|
"typecheck": "tsc --noEmit",
|
|
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
|
|
"clean": "rm -rf .next/ out/",
|
|
"dev:discordbot": "nodemon --watch ./common/discord"
|
|
},
|
|
"dependencies": {
|
|
"@discordjs/rest": "2.0.0",
|
|
"@next/mdx": "^13.5.0",
|
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
"@radix-ui/react-checkbox": "^1.0.4",
|
|
"@radix-ui/react-dialog": "^1.0.4",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.5",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@tanstack/react-query": "^5.74.4",
|
|
"accept-language": "^3.0.18",
|
|
"algoliasearch": "^4",
|
|
"class-variance-authority": "^0.4.0",
|
|
"clsx": "^1.2.1",
|
|
"discord.js": "14.4.0",
|
|
"dotenv": "^16.4.4",
|
|
"framer-motion": "^10.12.17",
|
|
"fuse.js": "^6.6.2",
|
|
"gray-matter": "^4.0.3",
|
|
"gsap": "^3.12.1",
|
|
"html-to-react": "^1.7.0",
|
|
"i18next": "^23.7.16",
|
|
"i18next-browser-languagedetector": "^7.2.0",
|
|
"i18next-resources-to-backend": "^1.2.0",
|
|
"lucide-react": "0.105.0-alpha.4",
|
|
"next": "14",
|
|
"nodemon": "^3.0.3",
|
|
"react": "^18.2.0",
|
|
"react-cookie": "^7.0.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-i18next": "^14.0.0",
|
|
"react-instantsearch-hooks-web": "^6.47.3",
|
|
"react-markdown": "^8.0.7",
|
|
"react-slick": "^0.30.3",
|
|
"react-use": "^17.4.0",
|
|
"rehype-katex": "^7.0.1",
|
|
"rehype-raw": "^7.0.0",
|
|
"remark-gfm": "^3.0.1",
|
|
"remark-math": "^6.0.0",
|
|
"sharp": "^0.33.2",
|
|
"slick-carousel": "^1.8.1",
|
|
"tailwind-merge": "^1.12.0",
|
|
"tailwindcss-animate": "^1.0.5",
|
|
"zustand": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.19.0",
|
|
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
|
|
"@next/eslint-plugin-next": "^15.2.2",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^17.0.45",
|
|
"@types/react": "^18.2.7",
|
|
"@types/react-dom": "^18.2.4",
|
|
"@types/react-slick": "^0.23.13",
|
|
"@typescript-eslint/parser": "^5.59.7",
|
|
"autoprefixer": "^10.4.14",
|
|
"eslint": "^9.19.0",
|
|
"eslint-config-next": "^15.2.2",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-react": "^7.37.4",
|
|
"eslint-plugin-tailwindcss": "^3.18.0",
|
|
"globals": "^15.14.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.4.3",
|
|
"postcss": "^8.4.24",
|
|
"prettier": "^3.4.2",
|
|
"tailwindcss": "^3.3.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^4.9.5",
|
|
"typescript-eslint": "^8.23.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"**/*.{json,md,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"packageManager": "yarn@4.7.0",
|
|
"engineStrict": true
|
|
}
|