Meadow/package.json
2023-12-19 17:46:23 -05:00

45 lines
967 B
JSON

{
"name": "meadow",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css}\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.11.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"rehype-highlight": "^6.0.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@vitejs/plugin-react": "^3.1.0",
"vite": "^4.2.0",
"vite-tsconfig-paths": "^4.2.0",
"prettier": "^2.8.7",
"typescript": "^4.9.3",
"gh-pages": "^6.1.0"
}
}