UNPKG

rtk-ready

Version:

Redux utilities package for a boilerplate setup with persisted state, authentication handling, API integration, and typed hooks, providing a structured and scalable state management solution for React applications.

77 lines (76 loc) 2.17 kB
{ "name": "rtk-ready", "version": "2.1.0", "description": "Redux utilities package for a boilerplate setup with persisted state, authentication handling, API integration, and typed hooks, providing a structured and scalable state management solution for React applications.", "keywords": [ "redux", "redux-toolkit", "state-management", "react", "redux-persist", "rtk", "api-integration", "react-hooks", "typed-redux", "redux-boilerplate", "authentication", "state-persistence", "rtk-ready" ], "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/jibon-roy/rtk-ready.git" }, "author": "Jibon Krishna Roy mailme.jibon@gmail.com", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsup", "test": "jest", "prepublishOnly": "npm run build", "lint": "eslint . .js,.ts,.tsx --fix", "format": "prettier --write .", "postinstall": "node ./dist/index.js" }, "bin": { "rtk-ready": "dist/index.js" }, "files": [ "dist", "scripts", "src" ], "dependencies": { "@reduxjs/toolkit": "^2.11.2", "js-cookie": "^3.0.5", "react": "^19.2.4", "react-dom": "^19.2.4", "react-redux": "^9.2.0", "redux-persist": "^6.0.0" }, "devDependencies": { "@rollup/plugin-babel": "^7.0.0", "@rollup/plugin-commonjs": "^29.0.2", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-typescript": "^12.3.0", "@types/jest": "^30.0.0", "@types/js-cookie": "^3.0.6", "@types/react-redux": "^7.1.34", "@typescript-eslint/eslint-plugin": "^8.57.0", "@typescript-eslint/parser": "^8.57.0", "eslint": "^9.7.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.5", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^7.0.1", "jest": "^30.3.0", "prettier": "^3.8.1", "rollup": "^4.59.0", "ts-jest": "^29.4.6", "tsup": "^8.5.1", "typescript": "^5.9.3" } }