1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| { "name": "react-admin-antd", "private": true, "version": "0.0.0", "scripts": { "dev": "vite", "build:dev": "tsc && vite build --mode development", "build:test": "tsc && vite build --mode test", "build:pro": "tsc && vite build --mode production", "preview": "vite preview", "lint:eslint": "eslint --fix --ext .js,.ts,.tsx ./src", "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,html,md}\"", "lint:stylelint": "stylelint --cache --fix \"**/*.{less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", "lint:lint-staged": "lint-staged", "prepare": "husky install", "release": "standard-version", "commit": "git pull && git add -A && git-cz && git push" }, "dependencies": { "@ant-design/icons": "^5.0.1", "antd": "^5.2.1", "axios": "^1.3.3", "dotenv": "^16.0.3", "react": "^18.2.0", "react-dom": "^18.2.0", "react-redux": "^8.0.5", "react-router-dom": "^6.8.1", "react-transition-group": "^4.4.5", "redux": "^4.2.1", "redux-persist": "^6.0.0", "redux-promise": "^0.6.0", "redux-thunk": "^2.4.2" }, "devDependencies": { "@commitlint/cli": "^17.4.3", "@commitlint/config-conventional": "^17.4.3", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "@types/react-transition-group": "^4.4.5", "@types/redux-promise": "^0.5.29", "@typescript-eslint/eslint-plugin": "^5.52.0", "@typescript-eslint/parser": "^5.52.0", "@vitejs/plugin-react": "^3.1.0", "autoprefixer": "^10.4.13", "eslint": "^8.34.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "husky": "^8.0.3", "less": "^4.1.3", "lint-staged": "^13.1.2", "postcss": "^8.4.21", "postcss-less": "^6.0.0", "prettier": "^2.8.4", "rollup-plugin-visualizer": "^5.9.0", "stylelint": "^15.1.0", "stylelint-config-prettier": "^9.0.5", "stylelint-config-recess-order": "^4.0.0", "stylelint-config-recommended-less": "^1.0.4", "stylelint-config-standard": "^30.0.1", "stylelint-less": "^1.0.6", "typescript": "^4.9.3", "vite": "^4.1.0", "vite-plugin-compression": "^0.5.1", "vite-plugin-eslint": "^1.8.1", "vite-plugin-html": "^3.2.0", "vite-plugin-svg-icons": "^2.0.1" } }
|