123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "mechanism-admin",
- "description": "",
- "keywords": [],
- "author": "",
- "private": true,
- "scripts": {
- "start": "rca start",
- "build": "rca build",
- "test": "rca test",
- "check": "eslint src/**",
- "fix": "prettier --write ."
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": ""
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "lint-staged": {
- "*.{js,css,json,md}": [
- "prettier --write",
- "git add"
- ]
- },
- "dependencies": {
- "@ant-design/pro-card": "^1.11.13",
- "@ant-design/pro-form": "^1.22.1",
- "@ant-design/pro-layout": "^6.17.1",
- "@ant-design/pro-table": "^2.35.1",
- "@types/react": "^16.9.0",
- "@types/react-dom": "^16.9.0",
- "@types/react-router-dom": "^5.1.5",
- "ahooks": "^2.10.3",
- "antd": "^4.15.3",
- "core-js": "3",
- "js-sha256": "^0.9.0",
- "less": "^4.1.1",
- "less-loader": "^8.1.1",
- "node-sass": "^5.0.0",
- "rca": "0.0.33",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-router-dom": "^5.2.0",
- "sass-loader": "^10.0.5"
- },
- "devDependencies": {
- "@types/node": "^14.14.6",
- "@types/webpack-env": "^1.15.3",
- "@typescript-eslint/eslint-plugin": "^4.22.0",
- "@typescript-eslint/parser": "^4.22.0",
- "eslint": "^7.25.0",
- "eslint-config-prettier": "^8.3.0",
- "eslint-plugin-react": "^7.23.2",
- "husky": "^6.0.0",
- "prettier": "^2.2.1",
- "typescript": "^3.9.7"
- }
- }
|