项目初始化
parents
Showing
.editorconfig
0 → 100644
.eslintrc.js
0 → 100644
.fatherrc.js
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
.prettierrc.js
0 → 100644
LICENSE
0 → 100644
ReadMe.md
0 → 100644
examples/base/app.js
0 → 100644
examples/base/data.js
0 → 100644
examples/base/index.css
0 → 100644
examples/base/index.html
0 → 100644
examples/base/test.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
examples/global.css
0 → 100644
examples/index.html
0 → 100644
examples/server.js
0 → 100644
examples/webpack.config.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "panda-xform", | ||
"version": "1.1.0", | ||
"description": "1.1.0: 项目初始化", | ||
"keywords": [ | ||
"panda-xform" | ||
], | ||
"main": "./lib/index.js", | ||
"module": "./es/index.js", | ||
"scripts": { | ||
"build": "cross-env BUILD_TYPE=lib father-build && cross-env BUILD_TYPE=es father-build", | ||
"dev": "node examples/server.js", | ||
"release": "np --no-cleanup --yolo --tag", | ||
"prepublishOnly": "yarn build", | ||
"lint": "yarn lint:js && yarn lint:prettier", | ||
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", | ||
"lint:fix": "yarn lint:js -- --fix", | ||
"lint:prettier": "check-prettier lint", | ||
"prettier": "prettier -c --write **/*", | ||
"test": "cross-env NODE_ENV=test jest" | ||
}, | ||
"dependencies": { | ||
"@ant-design/icons": "^4.7.0", | ||
"@babel/plugin-proposal-private-property-in-object": "^7.15.4", | ||
"@babel/runtime": "^7.19.0", | ||
"@wangeditor/editor": "^5.1.22", | ||
"@wangeditor/editor-for-react": "^1.0.6", | ||
"@wisdom-components/RichText": "^0.2.10", | ||
"@wisdom-components/basictable": "^1.5.18", | ||
"@wisdom-components/empty": "^1.4.7", | ||
"@wisdom-utils/utils": "0.0.46", | ||
"antd": "4.20.7", | ||
"antd-img-crop": "^3.14.1", | ||
"form-render": "1.6.7", | ||
"fr-generator": "^2.8.3", | ||
"http-proxy-middleware": "^1.0.6", | ||
"moment": "^2.29.1", | ||
"qrcode.react": "^1.0.1", | ||
"react": "17.0.2", | ||
"react-svg": "15.1.9", | ||
"yarn": "^1.22.17" | ||
}, | ||
"devDependencies": { | ||
"@babel/plugin-proposal-private-methods": "^7.14.5", | ||
"@babel/plugin-syntax-dynamic-import": "^7.8.3", | ||
"@babel/plugin-syntax-jsx": "^7.12.13", | ||
"@babel/plugin-transform-modules-amd": "^7.14.5", | ||
"@umijs/fabric": "^2.0.7", | ||
"@wisdom-map/amap": "^1.0.49--27.11", | ||
"@wisdom-map/arcgismap": "1.4.0-75", | ||
"@wisdom-map/basemap": "1.1.0-14", | ||
"babel-loader": "^8.2.2", | ||
"babel-plugin-import": "^1.13.3", | ||
"check-prettier": "^1.0.3", | ||
"colors": "^1.3.2", | ||
"core-js": "^3.9.1", | ||
"cross-env": "^7.0.2", | ||
"css-loader": "^4.3.0", | ||
"express": "^4.17.1", | ||
"father-build": "^1.18.1", | ||
"file-loader": "^6.2.0", | ||
"html-loader": "^2.1.1", | ||
"husky": "^2.3.0", | ||
"jest": "^25.2.2", | ||
"less": "3.9.0", | ||
"less-loader": "5.0.0", | ||
"lint-staged": "^9.4.2", | ||
"np": "^5.0.3", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^1.18.2", | ||
"prompt": "^1.0.0", | ||
"react-dom": "^17.0.1", | ||
"replace-in-file": "^6.2.0", | ||
"rimraf": "^3.0.0", | ||
"shelljs": "^0.8.4", | ||
"slash": "^3.0.0", | ||
"style-loader": "^2.0.0", | ||
"svg-url-loader": "^7.1.1", | ||
"url-loader": "^4.1.1", | ||
"webpack": "4.46.0", | ||
"webpack-cli": "^3.3.0", | ||
"webpack-dev-middleware": "3.6.2", | ||
"webpack-hot-middleware": "2.24.3" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "" | ||
}, | ||
"files": [ | ||
"dist", | ||
"es", | ||
"lib" | ||
], | ||
"lint-staged": { | ||
"**/*.{js,ts,json,css,md}": [ | ||
"yarn prettier", | ||
"git add" | ||
], | ||
"**/*.{js,ts}": [ | ||
"yarn lint:fix", | ||
"git add" | ||
] | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"ts" | ||
], | ||
"testMatch": [ | ||
"<rootDir>/src/**/__tests__/**/*.test.js" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/fixtures/" | ||
], | ||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/__tests__/", | ||
"/dist/" | ||
] | ||
}, | ||
"author": "dengxiaofeng <1186313486@qq.com>", | ||
"license": "MIT", | ||
"publishConfig": { | ||
"registry": "https://g.civnet.cn:4873" | ||
} | ||
} | ||
\ No newline at end of file |
src/apis/process.js
0 → 100644
src/constant/city.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
src/constant/constant.js
0 → 100644
src/core/widgets/index.js
0 → 100644
No preview for this file type
Please
register
or
sign in
to comment