UNPKG

3.83 kBJSONView Raw
1{
2 "name": "@reduxjs/toolkit",
3 "version": "1.9.5",
4 "description": "The official, opinionated, batteries-included toolset for efficient Redux development",
5 "author": "Mark Erikson <mark@isquaredsoftware.com>",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "git+https://github.com/reduxjs/redux-toolkit.git"
10 },
11 "keywords": [
12 "redux",
13 "react",
14 "starter",
15 "toolkit",
16 "reducer",
17 "slice",
18 "immer",
19 "immutable",
20 "redux-toolkit"
21 ],
22 "publishConfig": {
23 "access": "public"
24 },
25 "main": "dist/index.js",
26 "module": "dist/redux-toolkit.esm.js",
27 "unpkg": "dist/redux-toolkit.umd.min.js",
28 "types": "dist/index.d.ts",
29 "devDependencies": {
30 "@microsoft/api-extractor": "^7.13.2",
31 "@size-limit/preset-small-lib": "^4.11.0",
32 "@testing-library/react": "^13.3.0",
33 "@testing-library/user-event": "^13.1.5",
34 "@types/convert-source-map": "^1.5.1",
35 "@types/jest": "^27",
36 "@types/json-stringify-safe": "^5.0.0",
37 "@types/nanoid": "^2.1.0",
38 "@types/node": "^10.14.4",
39 "@types/query-string": "^6.3.0",
40 "@types/react": "^18.0.12",
41 "@types/react-dom": "^18.0.5",
42 "@types/yargs": "^16.0.1",
43 "@typescript-eslint/eslint-plugin": "^4.22.0",
44 "@typescript-eslint/parser": "^4.22.0",
45 "axios": "^0.19.2",
46 "console-testing-library": "^0.3.1",
47 "convert-source-map": "^1.7.0",
48 "esbuild": "^0.11.13",
49 "eslint": "^7.25.0",
50 "eslint-config-prettier": "^8.3.0",
51 "eslint-config-react-app": "^7.0.1",
52 "eslint-plugin-flowtype": "^5.7.2",
53 "eslint-plugin-import": "^2.22.1",
54 "eslint-plugin-jsx-a11y": "^6.4.1",
55 "eslint-plugin-prettier": "^3.4.0",
56 "eslint-plugin-react": "^7.23.2",
57 "eslint-plugin-react-hooks": "^4.2.0",
58 "fs-extra": "^9.1.0",
59 "invariant": "^2.2.4",
60 "jest": "^27",
61 "json-stringify-safe": "^5.0.1",
62 "magic-string": "^0.25.7",
63 "merge-source-map": "^1.1.0",
64 "msw": "^0.40.2",
65 "node-fetch": "^2.6.1",
66 "prettier": "^2.2.1",
67 "query-string": "^7.0.1",
68 "rimraf": "^3.0.2",
69 "rollup": "^2.47.0",
70 "rollup-plugin-strip-code": "^0.2.6",
71 "size-limit": "^4.11.0",
72 "source-map": "^0.7.3",
73 "terser": "^5.6.1",
74 "ts-jest": "^27",
75 "tslib": "^1.10.0",
76 "typescript": "~4.2.4",
77 "yargs": "^15.3.1"
78 },
79 "scripts": {
80 "build-ci": "yarn rimraf dist && yarn tsc && yarn lint && node scripts/cli.js --skipExtraction",
81 "build-prepare": "npm run build-ci",
82 "build": "yarn rimraf dist && yarn tsc && node scripts/cli.js --local --skipExtraction",
83 "build-only": "yarn rimraf dist && yarn tsc && node scripts/cli.js --skipExtraction",
84 "format": "prettier --write \"(src|examples)/**/*.{ts,tsx}\" \"**/*.md\"",
85 "format:check": "prettier --list-different \"(src|examples)/**/*.{ts,tsx}\" \"docs/*/**.md\"",
86 "lint": "eslint src",
87 "test": "jest --runInBand",
88 "type-tests": "yarn tsc -p src/tests/tsconfig.typetests.json && yarn tsc -p src/query/tests/tsconfig.typetests.json",
89 "prepack": "npm run build-prepare"
90 },
91 "files": [
92 "dist/**/*.js",
93 "dist/**/*.js.map",
94 "dist/**/*.d.ts",
95 "dist/**/package.json",
96 "src/",
97 "query"
98 ],
99 "dependencies": {
100 "immer": "^9.0.21",
101 "redux": "^4.2.1",
102 "redux-thunk": "^2.4.2",
103 "reselect": "^4.1.8"
104 },
105 "peerDependencies": {
106 "react": "^16.9.0 || ^17.0.0 || ^18",
107 "react-redux": "^7.2.1 || ^8.0.2"
108 },
109 "peerDependenciesMeta": {
110 "react": {
111 "optional": true
112 },
113 "react-redux": {
114 "optional": true
115 }
116 },
117 "sideEffects": false,
118 "bugs": {
119 "url": "https://github.com/reduxjs/redux-toolkit/issues"
120 },
121 "homepage": "https://redux-toolkit.js.org"
122}