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-04-08 00:19:20 +03:00
|
|
|
"version": "3.1.9",
|
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": {
|
2021-08-29 07:09:37 +03:00
|
|
|
"@babel/polyfill": "^7.12.1",
|
2024-03-08 06:38:44 +03:00
|
|
|
"@emotion/react": "^11.11.4",
|
2024-04-07 07:05:15 +03:00
|
|
|
"@redux-devtools/app": "^6.0.1",
|
2023-12-18 05:32:58 +03:00
|
|
|
"@redux-devtools/core": "^4.0.0",
|
2022-01-25 03:26:20 +03:00
|
|
|
"@redux-devtools/instrument": "^2.1.0",
|
|
|
|
"@redux-devtools/serialize": "^0.4.1",
|
2024-04-08 00:19:20 +03:00
|
|
|
"@redux-devtools/slider-monitor": "^5.0.1",
|
|
|
|
"@redux-devtools/ui": "^1.3.2",
|
2023-12-18 05:32:58 +03:00
|
|
|
"@redux-devtools/utils": "^3.0.0",
|
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",
|
2021-06-20 06:08:00 +03:00
|
|
|
"lodash": "^4.17.21",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
|
|
|
"react-icons": "^5.2.1",
|
|
|
|
"react-is": "^18.3.1",
|
2024-04-08 00:19:20 +03:00
|
|
|
"react-json-tree": "^0.19.0",
|
2023-10-24 22:18:38 +03:00
|
|
|
"react-redux": "^8.1.3",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.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-06-07 04:21:49 +03:00
|
|
|
"@babel/core": "^7.24.7",
|
|
|
|
"@babel/preset-env": "^7.24.7",
|
|
|
|
"@babel/preset-react": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
|
|
"@babel/register": "^7.24.6",
|
|
|
|
"@testing-library/jest-dom": "^6.4.5",
|
|
|
|
"@testing-library/react": "^14.3.1",
|
|
|
|
"@types/chrome": "^0.0.268",
|
|
|
|
"@types/lodash": "^4.17.4",
|
|
|
|
"@types/react": "^18.3.3",
|
|
|
|
"@types/react-dom": "^18.3.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2023-10-24 22:18:38 +03:00
|
|
|
"chromedriver": "^118.0.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"cross-env": "^7.0.3",
|
2024-06-07 04:21:49 +03:00
|
|
|
"electron": "^27.3.11",
|
|
|
|
"esbuild": "^0.21.4",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint": "^8.57.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2023-12-25 07:24:56 +03:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2023-11-09 04:22:50 +03:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"eslint-plugin-react": "^7.34.2",
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
|
|
"immutable": "^4.3.6",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2023-08-31 03:59:38 +03:00
|
|
|
"pug": "^3.0.2",
|
2024-06-07 04:21:49 +03:00
|
|
|
"rimraf": "^5.0.7",
|
|
|
|
"selenium-webdriver": "^4.21.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"sinon-chrome": "^3.0.1",
|
2024-06-07 04:21:49 +03:00
|
|
|
"ts-jest": "^29.1.4",
|
2024-01-08 02:08:46 +03:00
|
|
|
"typescript": "~5.3.3",
|
2024-03-27 00:01:02 +03:00
|
|
|
"webpack": "^5.91.0",
|
2023-06-23 17:32:19 +03:00
|
|
|
"webpack-cli": "^5.1.4"
|
2020-10-26 15:18:23 +03:00
|
|
|
}
|
|
|
|
}
|