2020-10-26 15:18:23 +03:00
|
|
|
{
|
2021-11-06 21:17:18 +03:00
|
|
|
"private": true,
|
2020-10-26 15:18:23 +03:00
|
|
|
"name": "remotedev-redux-devtools-extension",
|
2024-09-16 05:57:02 +03:00
|
|
|
"version": "3.2.5",
|
2020-10-26 15:18:23 +03:00
|
|
|
"description": "Redux Developer Tools for debugging application state changes.",
|
2021-06-20 06:08:00 +03:00
|
|
|
"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"
|
|
|
|
},
|
2020-10-26 15:18:23 +03:00
|
|
|
"scripts": {
|
2023-08-31 03:59:38 +03:00
|
|
|
"build": "pnpm run build:extension && pnpm run type-check",
|
|
|
|
"build:extension": "node build.mjs",
|
2020-10-26 15:18:23 +03:00
|
|
|
"build:examples": "babel-node examples/buildAll.js",
|
2022-11-07 03:26:12 +03:00
|
|
|
"clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist",
|
2020-12-19 23:01:09 +03:00
|
|
|
"test:app": "cross-env BABEL_ENV=test jest test/app",
|
|
|
|
"test:chrome": "jest test/chrome",
|
2022-05-08 16:49:09 +03:00
|
|
|
"test:electron": "pnpm run build:test:electron:fixture && jest test/electron",
|
2022-11-07 17:42:25 +03:00
|
|
|
"test": "pnpm run test:app && pnpm run test:chrome && pnpm run test:electron",
|
2021-09-20 00:59:01 +03:00
|
|
|
"build:test:electron:fixture": "webpack --config test/electron/fixture/webpack.config.js",
|
2021-08-25 07:22:54 +03:00
|
|
|
"type-check": "tsc --noEmit"
|
2020-10-26 15:18:23 +03:00
|
|
|
},
|
2021-06-20 06:08:00 +03:00
|
|
|
"dependencies": {
|
2024-08-26 04:53:07 +03:00
|
|
|
"@emotion/react": "^11.13.3",
|
2024-09-01 07:12:24 +03:00
|
|
|
"@redux-devtools/app": "workspace:^",
|
|
|
|
"@redux-devtools/core": "workspace:^",
|
|
|
|
"@redux-devtools/instrument": "workspace:^",
|
|
|
|
"@redux-devtools/serialize": "workspace:^",
|
|
|
|
"@redux-devtools/slider-monitor": "workspace:^",
|
|
|
|
"@redux-devtools/ui": "workspace:^",
|
|
|
|
"@redux-devtools/utils": "workspace:^",
|
2024-08-06 06:11:13 +03:00
|
|
|
"@reduxjs/toolkit": "^2.2.7",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/jsan": "^3.1.5",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14",
|
2021-08-31 04:42:01 +03:00
|
|
|
"localforage": "^1.10.0",
|
2024-08-14 06:42:16 +03:00
|
|
|
"lodash-es": "^4.17.21",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-08-26 04:53:07 +03:00
|
|
|
"react-icons": "^5.3.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react-is": "^18.3.1",
|
2024-09-01 07:12:24 +03:00
|
|
|
"react-json-tree": "workspace:^",
|
2024-08-06 06:11:13 +03:00
|
|
|
"react-redux": "^9.1.2",
|
|
|
|
"redux": "^5.0.1",
|
2021-09-20 00:59:01 +03:00
|
|
|
"redux-persist": "^6.0.0",
|
2023-06-04 20:59:22 +03:00
|
|
|
"styled-components": "^5.3.11"
|
2020-10-26 15:18:23 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-06 06:27:22 +03:00
|
|
|
"@babel/core": "^7.25.2",
|
2024-08-26 04:53:07 +03:00
|
|
|
"@babel/preset-env": "^7.25.4",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/preset-react": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
|
|
"@babel/register": "^7.24.6",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@testing-library/dom": "^10.4.0",
|
2024-08-26 04:53:07 +03:00
|
|
|
"@testing-library/jest-dom": "^6.5.0",
|
2024-09-01 15:30:09 +03:00
|
|
|
"@testing-library/react": "^16.0.1",
|
2024-09-17 02:24:11 +03:00
|
|
|
"@types/chrome": "^0.0.271",
|
2024-08-14 06:42:16 +03:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-09-17 02:24:11 +03:00
|
|
|
"@types/react": "^18.3.6",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@types/react-dom": "^18.3.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2024-07-20 16:17:14 +03:00
|
|
|
"chromedriver": "^126.0.5",
|
2021-09-19 02:47:03 +03:00
|
|
|
"cross-env": "^7.0.3",
|
2024-09-17 02:24:11 +03:00
|
|
|
"electron": "^31.6.0",
|
2024-08-26 04:53:07 +03:00
|
|
|
"esbuild": "^0.23.1",
|
2024-09-17 02:24:11 +03:00
|
|
|
"eslint": "^8.57.1",
|
2021-12-27 05:12:31 +03:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2024-09-17 02:24:11 +03:00
|
|
|
"eslint-plugin-import": "^2.30.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.10.0",
|
|
|
|
"eslint-plugin-react": "^7.36.1",
|
2024-06-07 04:21:49 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2024-08-06 06:27:22 +03:00
|
|
|
"immutable": "^4.3.7",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2024-06-07 05:35:26 +03:00
|
|
|
"pug": "^3.0.3",
|
2024-07-16 18:35:07 +03:00
|
|
|
"rimraf": "^6.0.1",
|
2024-09-17 02:24:11 +03:00
|
|
|
"selenium-webdriver": "^4.24.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"sinon-chrome": "^3.0.1",
|
2024-08-26 04:53:07 +03:00
|
|
|
"ts-jest": "^29.2.5",
|
2024-08-06 06:27:22 +03:00
|
|
|
"typescript": "~5.5.4",
|
2024-08-26 04:53:07 +03:00
|
|
|
"webpack": "^5.94.0",
|
2023-06-23 17:32:19 +03:00
|
|
|
"webpack-cli": "^5.1.4"
|
2020-10-26 15:18:23 +03:00
|
|
|
}
|
|
|
|
}
|