feat(blog): port from CRA to vite + react

This commit is contained in:
Kim, Jimin 2023-07-07 19:18:32 +09:00
parent 8243d38270
commit e48b65b14c
109 changed files with 1493 additions and 10360 deletions

View file

@ -2,76 +2,48 @@
"name": "@developomp-site/blog",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"cp": "cp -a ../../packages/content/dist/public/. ./public",
"dev": "pnpm cp && react-scripts start",
"build": "pnpm cp && react-scripts build",
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite serve build --open --port 3000",
"preview": "vite preview",
"clean": "rm -rf .turbo build node_modules"
},
"dependencies": {
"@developomp-site/content": "workspace:*",
"@developomp-site/theme": "workspace:*",
"@fontsource/noto-sans-kr": "^5.0.3",
"@fontsource/source-code-pro": "^5.0.3",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"elasticlunr": "^0.9.5",
"highlight.js": "^11.7.0",
"@kunukn/react-collapse": "^2.2.10",
"highlight.js": "^11.8.0",
"hoofd": "^1.7.0",
"katex": "^0.16.4",
"local-storage-fallback": "^4.1.2",
"katex": "^0.16.8",
"react": "^18.2.0",
"react-collapse": "^5.1.1",
"react-date-range": "^1.4.0",
"react-device-detect": "^2.2.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.5",
"react-scripts": "^5.0.1",
"react-select": "^5.7.0",
"react-tooltip": "^4.5.1",
"styled-components": "^5.3.6"
"wouter": "^2.11.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"@developomp-site/eslint-config": "workspace:*",
"@styled/typescript-styled-plugin": "^1.0.0",
"@types/elasticlunr": "^0.9.5",
"@developomp-site/tailwind-config": "workspace:*",
"@types/highlight.js": "^10.1.0",
"@types/jsdom": "^20.0.1",
"@types/katex": "^0.14.0",
"@types/node": "^18.11.11",
"@types/react": "^18.0.26",
"@types/react": "^18.0.37",
"@types/react-collapse": "^5.0.1",
"@types/react-date-range": "^1.4.4",
"@types/react-dom": "^18.0.9",
"@types/react-select": "^5.0.1",
"@types/styled-components": "^5.1.26",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^20.0.3",
"prettier": "^2.8.1",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier-plugin-tailwindcss": "^0.3.0",
"simple-icons": "^7.21.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4",
"vite": "^4.3.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-dynamic-import": "^1.4.1"
}
}