package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "seata-saga-statemachine-designer",
  3. "version": "0.0.2",
  4. "description": "A visual graph designer for Seata Saga StateMachine based on GGEdior 2.0.4",
  5. "keywords": [
  6. "react",
  7. "graphics",
  8. "designer",
  9. "seata",
  10. "saga",
  11. "state machine"
  12. ],
  13. "main": "cjs/index.js",
  14. "module": "es/index.js",
  15. "types": "typings/index.d.ts",
  16. "files": [
  17. "src",
  18. "es",
  19. "cjs",
  20. "dist",
  21. "*.md",
  22. "typings"
  23. ],
  24. "scripts": {
  25. "start": "webpack-dev-server --config ./tools/webpack.config.dev.js --open",
  26. "build": "rimraf ./dist && webpack --config ./tools/webpack.config.prod.js"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/seata/seata.git"
  31. },
  32. "authors": [
  33. {
  34. "name": "陈龙",
  35. "email": "long_187@126.com"
  36. },
  37. {
  38. "name": "高力",
  39. "email": "3071730@qq.com"
  40. }
  41. ],
  42. "license": "Apache License, Version 2.0",
  43. "bugs": {
  44. "url": "https://github.com/seata/seata/issues"
  45. },
  46. "homepage": "https://seata.io/",
  47. "peerDependencies": {
  48. "react": "^16.3.0"
  49. },
  50. "dependencies": {
  51. "@antv/g6": "^2.2.6",
  52. "codemirror": "^5.65.8",
  53. "core-js": "^3.6.5",
  54. "lodash": "^4.17.21",
  55. "react-codemirror": "^1.0.0"
  56. },
  57. "devDependencies": {
  58. "@babel/cli": "^7.18.10",
  59. "@babel/core": "^7.10.4",
  60. "@babel/plugin-proposal-class-properties": "^7.10.4",
  61. "@babel/plugin-transform-modules-commonjs": "^7.10.4",
  62. "@babel/plugin-transform-runtime": "^7.10.4",
  63. "@babel/polyfill": "^7.10.4",
  64. "@babel/preset-env": "^7.10.4",
  65. "@babel/preset-react": "^7.10.4",
  66. "@babel/runtime": "^7.10.4",
  67. "babel-eslint": "^10.1.0",
  68. "babel-loader": "^8.1.0",
  69. "babel-plugin-module-resolver": "^3.1.1",
  70. "babel-plugin-transform-inline-environment-variables": "^0.4.3",
  71. "cross-env": "^5.2.0",
  72. "css-loader": "^2.1.0",
  73. "cz-conventional-changelog": "^2.1.0",
  74. "eslint": "^5.11.1",
  75. "eslint-config-airbnb": "^17.1.0",
  76. "eslint-plugin-import": "^2.22.0",
  77. "eslint-plugin-jsx-a11y": "^6.3.1",
  78. "eslint-plugin-react": "^7.20.3",
  79. "less": "^3.11.3",
  80. "less-loader": "^4.1.0",
  81. "postcss-loader": "^3.0.0",
  82. "postcss-preset-env": "^6.5.0",
  83. "rimraf": "^2.6.2",
  84. "style-loader": "^0.23.1",
  85. "webpack": "^4.43.0",
  86. "webpack-cli": "^3.3.12",
  87. "webpack-dev-server": "^3.11.0"
  88. },
  89. "config": {
  90. "commitizen": {
  91. "path": "./node_modules/cz-conventional-changelog"
  92. }
  93. }
  94. }