Files
incubator-seata/saga/seata-saga-statemachine-designer/package.json
wangchunxiang c2453d6434 chore(project): 添加项目配置文件和忽略规则
- 添加 Babel 配置文件支持 ES6+ 语法转换
- 添加 ESLint 忽略规则和配置文件
- 添加 Git 忽略规则文件
- 添加 Travis CI 配置文件
- 添加 1.4.2 版本变更日志文件
- 添加 Helm 图表辅助模板文件
- 添加 Helm 忽略规则文件
2026-03-27 17:36:48 +08:00

95 lines
2.4 KiB
JSON

{
"name": "seata-saga-statemachine-designer",
"version": "0.0.1",
"description": "A visual graph designer for Seata Saga StateMachine based on GGEdior 2.0.4",
"keywords": [
"react",
"graphics",
"designer",
"seata",
"saga",
"state machine"
],
"main": "cjs/index.js",
"module": "es/index.js",
"types": "typings/index.d.ts",
"files": [
"src",
"es",
"cjs",
"dist",
"*.md",
"typings"
],
"scripts": {
"start": "webpack-dev-server --config ./tools/webpack.config.dev.js --open",
"build": "rimraf ./dist && webpack --config ./tools/webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seata/seata.git"
},
"authors": [
{
"name": "陈龙",
"email": "long_187@126.com"
},
{
"name": "高力",
"email": "3071730@qq.com"
}
],
"license": "Apache License, Version 2.0",
"bugs": {
"url": "https://github.com/seata/seata/issues"
},
"homepage": "http://seata.io/",
"peerDependencies": {
"react": "^16.3.0"
},
"dependencies": {
"@antv/g6": "^2.2.6",
"codemirror": "^5.55.0",
"core-js": "^3.6.5",
"lodash": "^4.17.10",
"react-codemirror": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"less": "^3.11.3",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}