12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "charge",
- "description": "充电装系统管理平台",
- "scripts": {
- "start": "rca start",
- "build": "rca build",
- "test": "rca test",
- "lint": "eslint"
- },
- "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": {
- "@types/react": "^16.9.0",
- "@types/react-dom": "^16.9.0",
- "@types/react-router-dom": "^5.1.5",
- "@typescript-eslint/eslint-plugin": "^4.9.1",
- "@typescript-eslint/parser": "^4.9.1",
- "ahooks": "^2.10.1",
- "antd": "^4.15.2",
- "axios": "0.21.0",
- "babel-plugin-import": "^1.13.3",
- "core-js": "^3.11.0",
- "eslint": "^7.15.0",
- "eslint-plugin-react": "^7.21.5",
- "js-sha256": "^0.9.0",
- "node-sass": "^5.0.0",
- "rca": "0.0.19",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-helmet": "^6.1.0",
- "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.9.1",
- "@typescript-eslint/parser": "^4.9.1",
- "eslint": "^7.15.0",
- "eslint-plugin-react": "^7.21.5",
- "typescript": "^3.9.7"
- }
- }
|