package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@flowgram.ai/demo-fixed-layout",
  3. "version": "0.1.0",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "main": "./src/index.ts",
  8. "files": [
  9. "src/",
  10. ".eslintrc.js",
  11. ".gitignore",
  12. "index.html",
  13. "package.json",
  14. "rsbuild.config.ts",
  15. "tsconfig.json"
  16. ],
  17. "scripts": {
  18. "build": "exit 0",
  19. "build:fast": "exit 0",
  20. "build:watch": "exit 0",
  21. "clean": "rimraf dist",
  22. "dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
  23. "lint": "eslint ./src --cache",
  24. "lint:fix": "eslint ./src --fix",
  25. "start": "cross-env NODE_ENV=development rsbuild dev --open",
  26. "test": "exit",
  27. "test:cov": "exit",
  28. "watch": "exit 0"
  29. },
  30. "dependencies": {
  31. "@douyinfe/semi-icons": "^2.72.3",
  32. "@douyinfe/semi-ui": "^2.72.3",
  33. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  34. "@flowgram.ai/fixed-semi-materials": "workspace:*",
  35. "@flowgram.ai/group-plugin": "workspace:*",
  36. "@flowgram.ai/minimap-plugin": "workspace:*",
  37. "lodash-es": "^4.17.21",
  38. "nanoid": "^4.0.2",
  39. "react": "^18",
  40. "react-dom": "^18",
  41. "styled-components": "^5"
  42. },
  43. "devDependencies": {
  44. "@flowgram.ai/ts-config": "workspace:*",
  45. "@flowgram.ai/eslint-config": "workspace:*",
  46. "@rsbuild/core": "^1.2.16",
  47. "@rsbuild/plugin-react": "^1.1.1",
  48. "@types/lodash-es": "^4.17.12",
  49. "@types/node": "^18",
  50. "@types/react": "^18",
  51. "@types/react-dom": "^18",
  52. "@types/styled-components": "^5",
  53. "@typescript-eslint/parser": "^6.10.0",
  54. "eslint": "^8.54.0",
  55. "less": "^4.1.2",
  56. "less-loader": "^6",
  57. "cross-env": "~7.0.3"
  58. },
  59. "publishConfig": {
  60. "access": "public",
  61. "registry": "https://registry.npmjs.org/"
  62. }
  63. }