mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
c133d59461
* Version Packages * Update --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
86 lines
3.0 KiB
JSON
86 lines
3.0 KiB
JSON
{
|
|
"private": true,
|
|
"name": "remotedev-redux-devtools-extension",
|
|
"version": "3.2.3",
|
|
"description": "Redux Developer Tools for debugging application state changes.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run build:extension && pnpm run type-check",
|
|
"build:extension": "node build.mjs",
|
|
"build:examples": "babel-node examples/buildAll.js",
|
|
"clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist",
|
|
"test:app": "cross-env BABEL_ENV=test jest test/app",
|
|
"test:chrome": "jest test/chrome",
|
|
"test:electron": "pnpm run build:test:electron:fixture && jest test/electron",
|
|
"test": "pnpm run test:app && pnpm run test:chrome && pnpm run test:electron",
|
|
"build:test:electron:fixture": "webpack --config test/electron/fixture/webpack.config.js",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.13.3",
|
|
"@redux-devtools/app": "^6.1.0",
|
|
"@redux-devtools/core": "^4.0.0",
|
|
"@redux-devtools/instrument": "^2.1.0",
|
|
"@redux-devtools/serialize": "^0.4.1",
|
|
"@redux-devtools/slider-monitor": "^5.0.1",
|
|
"@redux-devtools/ui": "^1.3.2",
|
|
"@redux-devtools/utils": "^3.0.0",
|
|
"@reduxjs/toolkit": "^2.2.7",
|
|
"@types/jsan": "^3.1.5",
|
|
"jsan": "^3.1.14",
|
|
"localforage": "^1.10.0",
|
|
"lodash-es": "^4.17.21",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-icons": "^5.3.0",
|
|
"react-is": "^18.3.1",
|
|
"react-json-tree": "^0.19.0",
|
|
"react-redux": "^9.1.2",
|
|
"redux": "^5.0.1",
|
|
"redux-persist": "^6.0.0",
|
|
"styled-components": "^5.3.11"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@babel/preset-react": "^7.24.7",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@babel/register": "^7.24.6",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/jest-dom": "^6.5.0",
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/chrome": "^0.0.270",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/react": "^18.3.4",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/styled-components": "^5.1.34",
|
|
"chromedriver": "^126.0.5",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "^31.4.0",
|
|
"esbuild": "^0.23.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
"eslint-plugin-react": "^7.35.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"immutable": "^4.3.7",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"pug": "^3.0.3",
|
|
"rimraf": "^6.0.1",
|
|
"selenium-webdriver": "^4.23.0",
|
|
"sinon-chrome": "^3.0.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "~5.5.4",
|
|
"webpack": "^5.94.0",
|
|
"webpack-cli": "^5.1.4"
|
|
}
|
|
}
|