package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@flowgram.ai/demo-fixed-layout-animation",
  3. "version": "0.1.0",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "main": "./src/app.ts",
  8. "files": [
  9. "src/",
  10. "eslint.config.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. "build:prod": "cross-env MODE=app NODE_ENV=production rsbuild build",
  22. "clean": "rimraf dist",
  23. "dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
  24. "lint": "eslint ./src --cache",
  25. "lint:fix": "eslint ./src --fix",
  26. "ts-check": "tsc --noEmit",
  27. "start": "cross-env NODE_ENV=development rsbuild dev --open",
  28. "test": "exit",
  29. "test:cov": "exit",
  30. "watch": "exit 0"
  31. },
  32. "dependencies": {
  33. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  34. "@flowgram.ai/fixed-semi-materials": "workspace:*",
  35. "@flowgram.ai/minimap-plugin": "workspace:*",
  36. "lodash-es": "^4.17.21",
  37. "nanoid": "^5.0.9",
  38. "react": "^18",
  39. "react-dom": "^18",
  40. "classnames": "^2.5.1",
  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. "@rsbuild/plugin-less": "^1.1.1",
  49. "@types/lodash-es": "^4.17.12",
  50. "@types/node": "^18",
  51. "@types/react": "^18",
  52. "@types/react-dom": "^18",
  53. "@types/styled-components": "^5",
  54. "@typescript-eslint/parser": "^8.0.0",
  55. "typescript": "^5.8.3",
  56. "eslint": "^9.0.0",
  57. "less": "^4.1.2",
  58. "less-loader": "^6",
  59. "cross-env": "~7.0.3"
  60. },
  61. "publishConfig": {
  62. "access": "public",
  63. "registry": "https://registry.npmjs.org/"
  64. }
  65. }