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",
|
2023-08-28 05:24:11 +03:00
|
|
|
"version": "3.1.1",
|
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": {
|
2022-11-07 03:26:12 +03:00
|
|
|
"start": "webpack --env development --watch",
|
|
|
|
"build": "pnpm run build:extension && pnpm run build:chrome && pnpm run build:edge && pnpm run build:firefox",
|
|
|
|
"build:extension": "webpack --env production && webpack --config wrap.webpack.config.js",
|
2023-08-28 04:27:13 +03:00
|
|
|
"build:chrome": "cpy . ../../chrome/dist --cwd dist && cpy manifest.json ../dist --cwd chrome",
|
|
|
|
"build:edge": "cpy . ../../edge/dist --cwd dist && cpy manifest.json ../dist --cwd edge",
|
|
|
|
"build:firefox": "cpy . ../../firefox/dist --cwd dist && cpy manifest.json ../dist --cwd firefox",
|
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",
|
2023-08-28 05:24:11 +03:00
|
|
|
"@redux-devtools/app": "^3.0.0",
|
2022-05-30 20:22:06 +03:00
|
|
|
"@redux-devtools/core": "^3.13.0",
|
2022-01-25 03:26:20 +03:00
|
|
|
"@redux-devtools/instrument": "^2.1.0",
|
|
|
|
"@redux-devtools/serialize": "^0.4.1",
|
2022-05-30 20:22:06 +03:00
|
|
|
"@redux-devtools/slider-monitor": "^4.0.0",
|
|
|
|
"@redux-devtools/ui": "^1.3.0",
|
|
|
|
"@redux-devtools/utils": "^2.0.0",
|
2021-08-25 07:22:54 +03:00
|
|
|
"@types/jsan": "^3.1.2",
|
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",
|
2022-06-20 04:12:23 +03:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-06-23 17:32:19 +03:00
|
|
|
"react-icons": "^4.10.1",
|
2022-06-20 04:12:23 +03:00
|
|
|
"react-is": "^18.2.0",
|
2023-01-05 17:18:48 +03:00
|
|
|
"react-json-tree": "^0.18.0",
|
2023-08-07 15:21:50 +03:00
|
|
|
"react-redux": "^8.1.2",
|
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": {
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/core": "^7.22.11",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@babel/preset-env": "^7.22.10",
|
2023-06-23 17:32:19 +03:00
|
|
|
"@babel/preset-react": "^7.22.5",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/preset-typescript": "^7.22.11",
|
2023-06-23 17:32:19 +03:00
|
|
|
"@babel/register": "^7.22.5",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@testing-library/jest-dom": "^6.1.2",
|
2023-02-17 04:40:30 +03:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@types/chrome": "^0.0.244",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@types/lodash": "^4.14.197",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@types/react": "^18.2.21",
|
2023-08-07 15:21:50 +03:00
|
|
|
"@types/react-dom": "^18.2.7",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@types/styled-components": "^5.1.26",
|
2023-07-12 21:49:09 +03:00
|
|
|
"babel-loader": "^9.1.3",
|
2023-08-19 05:14:30 +03:00
|
|
|
"chromedriver114": "npm:chromedriver@^114.0.3",
|
|
|
|
"chromedriver115": "npm:chromedriver@^115.0.1",
|
2022-05-17 20:47:34 +03:00
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
2023-07-12 20:16:34 +03:00
|
|
|
"cpy-cli": "^5.0.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"cross-env": "^7.0.3",
|
2023-06-04 20:59:22 +03:00
|
|
|
"css-loader": "^6.8.1",
|
2023-08-28 05:49:22 +03:00
|
|
|
"electron": "^25.7.0",
|
|
|
|
"eslint": "^8.48.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2023-08-21 02:49:11 +03:00
|
|
|
"eslint-plugin-import": "^2.28.1",
|
2023-02-15 16:44:51 +03:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
2023-08-21 02:49:11 +03:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2023-03-06 02:56:03 +03:00
|
|
|
"fork-ts-checker-webpack-plugin": "^8.0.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"immutable": "^4.3.4",
|
|
|
|
"jest": "^29.6.4",
|
|
|
|
"jest-environment-jsdom": "^29.6.4",
|
2021-09-19 02:47:03 +03:00
|
|
|
"pug-html-loader": "^1.1.5",
|
|
|
|
"raw-loader": "^4.0.2",
|
2021-06-19 05:11:10 +03:00
|
|
|
"react-transform-catch-errors": "^1.0.2",
|
|
|
|
"react-transform-hmr": "^1.0.4",
|
2023-06-04 20:59:22 +03:00
|
|
|
"rimraf": "^5.0.1",
|
2023-08-07 15:21:50 +03:00
|
|
|
"selenium-webdriver": "^4.11.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"sinon-chrome": "^3.0.1",
|
2023-06-04 20:59:22 +03:00
|
|
|
"style-loader": "^3.3.3",
|
2023-07-12 21:49:09 +03:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-07-13 01:07:28 +03:00
|
|
|
"typescript": "~5.1.6",
|
2023-08-07 15:21:50 +03:00
|
|
|
"webpack": "^5.88.2",
|
2023-06-23 17:32:19 +03:00
|
|
|
"webpack-cli": "^5.1.4"
|
2020-10-26 15:18:23 +03:00
|
|
|
}
|
|
|
|
}
|