12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "enterprise-platform",
- "description": "企业端",
- "scripts": {
- "start": "rca start",
- "build": "rca build",
- "test": "rca test"
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": ""
- },
- "lint-staged": {
- "*.{js,jsx}": [
- "eslint --fix",
- "git add"
- ],
- "packages/**/*.{ts,d.ts}": [
- "npm run build:docs-api",
- "git adddocs"
- ]
- },
- "husky": {
- "hooks": {
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
- "pre-commit": "lint-staged"
- }
- },
- "keywords": [],
- "author": "",
- "dependencies": {
- "@amap/amap-jsapi-loader": "^0.0.7",
- "@ant-design/icons": "^4.3.0",
- "@types/react": "^16.9.0",
- "@types/react-dom": "^16.9.0",
- "@types/react-router-dom": "^5.1.5",
- "antd": "^4.9.0",
- "axios": "^0.21.0",
- "core-js": "^3.8.1",
- "node-sass": "^5.0.0",
- "rca": "0.0.21",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-router-dom": "^5.2.0",
- "sass-loader": "^10.0.5",
- "vfile-location": "^3.2.0"
- },
- "devDependencies": {
- "@types/node": "^14.14.10",
- "@types/webpack-env": "^1.15.3",
- "babel-plugin-import": "^1.13.3",
- "typescript": "^3.9.7"
- }
- }
|