Added a 404.html file that contains a redirection script in the 'react' package. Also updated the build script in package.json to copy the 404.html into the dist folder when building.
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "react",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build && cp ./404.html ./dist",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@mdx-js/react": "^3.0.1",
|
|
"@stefanprobst/rehype-extract-toc": "^2.2.0",
|
|
"highlight.js": "^11.9.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.23.1",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"rehype-slug": "^6.0.0",
|
|
"remark-gfm": "^4.0.0",
|
|
"tailwind-merge": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mdx-js/rollup": "^3.0.1",
|
|
"@tailwindcss/typography": "^0.5.13",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^20.12.13",
|
|
"@types/react": "^18.2.66",
|
|
"@types/react-dom": "^18.2.22",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/react-syntax-highlighter": "^15",
|
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
"@typescript-eslint/parser": "^7.2.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
"eslint-plugin-storybook": "^0.8.0",
|
|
"postcss": "^8.4.38",
|
|
"tailwindcss": "^3.4.3",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.2.0",
|
|
"vite-plugin-dynamic-import": "^1.5.0"
|
|
}
|
|
}
|