package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@flowgram.ai/demo-nextjs-antd",
  3. "version": "0.1.0",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "files": [
  8. "public/",
  9. "src/",
  10. ".eslintrc.js",
  11. ".gitignore",
  12. "next.config.ts",
  13. "pnpm-lock.yaml",
  14. "postcss.config.mjs",
  15. "package.json",
  16. "tsconfig.json",
  17. "README.md"
  18. ],
  19. "scripts": {
  20. "dev": "next dev",
  21. "build": "next build",
  22. "start": "next start",
  23. "lint": "eslint ./src --cache",
  24. "lint:fix": "eslint ./src --fix"
  25. },
  26. "dependencies": {
  27. "antd": "^5.25.4",
  28. "react": "^18",
  29. "react-dom": "^18",
  30. "next": "15.2.4",
  31. "lodash-es": "^4.17.21",
  32. "classnames": "^2.5.1",
  33. "server-only": "^0.0.1",
  34. "styled-components": "^5",
  35. "nanoid": "^4.0.2",
  36. "@ant-design/icons": "5.x",
  37. "@flowgram.ai/free-layout-editor": "workspace:*",
  38. "@flowgram.ai/free-snap-plugin": "workspace:*",
  39. "@flowgram.ai/free-lines-plugin": "workspace:*",
  40. "@flowgram.ai/free-node-panel-plugin": "workspace:*",
  41. "@flowgram.ai/minimap-plugin": "workspace:*",
  42. "@flowgram.ai/free-container-plugin": "workspace:*",
  43. "@flowgram.ai/free-group-plugin": "workspace:*",
  44. "@flowgram.ai/form-antd-materials": "workspace:*"
  45. },
  46. "devDependencies": {
  47. "@flowgram.ai/ts-config": "workspace:*",
  48. "@flowgram.ai/eslint-config": "workspace:*",
  49. "@types/styled-components": "^5",
  50. "typescript": "^5.0.4",
  51. "@types/lodash-es": "^4.17.12",
  52. "@types/node": "^18",
  53. "@types/next": "^9.0.0",
  54. "@types/react": "^18",
  55. "@types/react-dom": "^18",
  56. "@tailwindcss/postcss": "^4",
  57. "tailwindcss": "^4",
  58. "eslint": "^8.54.0",
  59. "@babel/eslint-parser": "~7.19.1",
  60. "eslint-plugin-json": "^4.0.1",
  61. "eslint-plugin-next": "0.0.0",
  62. "eslint-config-next": "^15.3.1",
  63. "@eslint/eslintrc": "^3",
  64. "sass": "^1.89.1"
  65. },
  66. "publishConfig": {
  67. "access": "public",
  68. "registry": "https://registry.npmjs.org/"
  69. }
  70. }