package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "eslint.config.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": "exit 0",
  22. "build:prod": "next build",
  23. "start": "next start",
  24. "lint": "eslint ./src --cache",
  25. "lint:fix": "eslint ./src --fix",
  26. "ts-check": "tsc --noEmit"
  27. },
  28. "dependencies": {
  29. "antd": "^5.25.4",
  30. "react": "^18",
  31. "react-dom": "^18",
  32. "next": "^15.5.7",
  33. "lodash-es": "^4.17.21",
  34. "classnames": "^2.5.1",
  35. "server-only": "^0.0.1",
  36. "styled-components": "^5",
  37. "nanoid": "^5.0.9",
  38. "@ant-design/icons": "5.x",
  39. "@flowgram.ai/free-layout-editor": "workspace:*",
  40. "@flowgram.ai/free-snap-plugin": "workspace:*",
  41. "@flowgram.ai/free-lines-plugin": "workspace:*",
  42. "@flowgram.ai/free-node-panel-plugin": "workspace:*",
  43. "@flowgram.ai/minimap-plugin": "workspace:*",
  44. "@flowgram.ai/free-container-plugin": "workspace:*",
  45. "@flowgram.ai/free-group-plugin": "workspace:*",
  46. "@flowgram.ai/form-antd-materials": "workspace:*"
  47. },
  48. "devDependencies": {
  49. "@flowgram.ai/ts-config": "workspace:*",
  50. "@flowgram.ai/eslint-config": "workspace:*",
  51. "@types/styled-components": "^5",
  52. "typescript": "^5.8.3",
  53. "@types/lodash-es": "^4.17.12",
  54. "@types/node": "^18",
  55. "@types/next": "^9.0.0",
  56. "@types/react": "^18",
  57. "@types/react-dom": "^18",
  58. "@tailwindcss/postcss": "^4",
  59. "tailwindcss": "^4",
  60. "eslint": "^9.0.0",
  61. "@babel/eslint-parser": "~7.19.1",
  62. "eslint-plugin-json": "^4.0.1",
  63. "eslint-plugin-next": "0.0.0",
  64. "eslint-config-next": "^15.3.1",
  65. "@eslint/eslintrc": "3.3.3",
  66. "sass": "^1.89.1"
  67. },
  68. "publishConfig": {
  69. "access": "public",
  70. "registry": "https://registry.npmjs.org/"
  71. }
  72. }