package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "adcms",
  3. "private": true,
  4. "version": "1.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "staging": "vite --mode staging",
  9. "pro": "vite --mode production",
  10. "build": "tsc && vite build",
  11. "build:test": "tsc && vite build --config vite.test.config.ts",
  12. "build:staging": "tsc && vite build --mode staging",
  13. "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
  14. "preview": "vite preview"
  15. },
  16. "dependencies": {
  17. "@ant-design/icons": "^5.2.6",
  18. "@antfu/utils": "^0.7.6",
  19. "antd": "^5.9.0",
  20. "axios": "^1.5.0",
  21. "dayjs": "^1.11.10",
  22. "lodash": "^4.17.21",
  23. "markdown-editor-reactjs": "^1.1.5",
  24. "react": "^18.2.0",
  25. "react-dom": "^18.2.0",
  26. "react-router-dom": "^6.15.0"
  27. },
  28. "devDependencies": {
  29. "@babel/core": "^7.22.15",
  30. "@babel/preset-react": "^7.22.15",
  31. "@rollup/pluginutils": "^5.0.5",
  32. "@types/lodash": "^4.14.200",
  33. "@types/markdown-it": "^13.0.6",
  34. "@types/markdown-it-footnote": "^3.0.3",
  35. "@types/node": "^20.5.9",
  36. "@types/react": "^18.2.15",
  37. "@types/react-dom": "^18.2.7",
  38. "@typescript-eslint/eslint-plugin": "^6.0.0",
  39. "@typescript-eslint/parser": "^6.0.0",
  40. "@vitejs/plugin-react": "^4.0.3",
  41. "babel-plugin-react-css-modules": "^5.2.6",
  42. "eslint": "^8.45.0",
  43. "eslint-plugin-react-hooks": "^4.6.0",
  44. "eslint-plugin-react-refresh": "^0.4.3",
  45. "front-matter": "^4.0.2",
  46. "highlight.js": "^11.9.0",
  47. "htmlparser2": "^9.0.0",
  48. "markdown-it": "^13.0.2",
  49. "markdown-it-abbr": "^1.0.4",
  50. "markdown-it-deflist": "^2.1.0",
  51. "markdown-it-emoji": "^2.0.2",
  52. "markdown-it-footnote": "^3.0.3",
  53. "markdown-it-ins": "^3.0.1",
  54. "markdown-it-katex": "^2.0.3",
  55. "markdown-it-mark": "^3.0.1",
  56. "markdown-it-sub": "^1.0.0",
  57. "markdown-it-sup": "^1.0.0",
  58. "markdown-it-table-of-contents": "^0.6.0",
  59. "markdown-it-task-lists": "^2.1.1",
  60. "markdown-it-textual-uml": "^0.16.0",
  61. "postcss-modules": "^6.0.0",
  62. "postcss-preset-env": "^9.1.3",
  63. "typescript": "^5.0.2",
  64. "vite": "^4.4.5"
  65. }
  66. }