mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Add packages
This commit is contained in:
parent
9d7aa4b62f
commit
11c5fd1c57
|
@ -1,9 +1,17 @@
|
||||||
{
|
{
|
||||||
"version": "2.17.2",
|
|
||||||
"name": "remotedev-redux-devtools-extension",
|
"name": "remotedev-redux-devtools-extension",
|
||||||
|
"version": "2.17.2",
|
||||||
"description": "Redux Developer Tools for debugging application state changes.",
|
"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": {
|
"scripts": {
|
||||||
"start": "webpack --config webpack/dev.config.babel.js",
|
"start": "webpack --config webpack/dev.config.babel.js",
|
||||||
|
"build": "npm run build:extension && npm run build:firefox",
|
||||||
"build:extension": "rimraf build/extension && webpack --config webpack/wrap.config.babel.js && webpack --config webpack/prod.config.babel.js",
|
"build:extension": "rimraf build/extension && webpack --config webpack/wrap.config.babel.js && webpack --config webpack/prod.config.babel.js",
|
||||||
"build:firefox": "webpack --config webpack/prod.firefox.config.babel.js",
|
"build:firefox": "webpack --config webpack/prod.firefox.config.babel.js",
|
||||||
"build:examples": "babel-node examples/buildAll.js",
|
"build:examples": "babel-node examples/buildAll.js",
|
||||||
|
@ -23,67 +31,41 @@
|
||||||
"test:electron": "jest test/electron",
|
"test:electron": "jest test/electron",
|
||||||
"test": "npm run test:app && npm run build:extension && npm run test:chrome && npm run test:electron"
|
"test": "npm run test:app && npm run build:extension && npm run test:chrome && npm run test:electron"
|
||||||
},
|
},
|
||||||
"repository": {
|
"dependencies": {
|
||||||
"type": "git",
|
"@redux-devtools/app": "^1.0.0-8",
|
||||||
"url": "https://github.com/zalmoxisus/redux-devtools-extension"
|
"@redux-devtools/core": "^3.9.0",
|
||||||
|
"@redux-devtools/instrument": "^1.11.0",
|
||||||
|
"@redux-devtools/serialize": "^0.3.0",
|
||||||
|
"@redux-devtools/slider-monitor": "^2.0.0-8",
|
||||||
|
"@redux-devtools/utils": "^1.0.0-6",
|
||||||
|
"jsan": "^3.1.13",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"react": "^16.14.0",
|
||||||
|
"react-dom": "^16.14.0",
|
||||||
|
"react-icons": "^3.11.0",
|
||||||
|
"react-json-tree": "^0.15.0",
|
||||||
|
"react-redux": "^7.2.4",
|
||||||
|
"redux": "^4.1.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/zalmoxisus/redux-devtools-extension",
|
|
||||||
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
||||||
"license": "MIT",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.14.5",
|
|
||||||
"@babel/core": "^7.14.6",
|
|
||||||
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
||||||
"@babel/plugin-proposal-decorators": "^7.14.5",
|
"@babel/plugin-proposal-decorators": "^7.14.5",
|
||||||
"@babel/polyfill": "^7.12.1",
|
"@babel/polyfill": "^7.12.1",
|
||||||
"@babel/preset-env": "^7.14.5",
|
|
||||||
"@babel/preset-react": "^7.14.5",
|
|
||||||
"@babel/register": "^7.14.5",
|
"@babel/register": "^7.14.5",
|
||||||
"babel-eslint": "^10.1.0",
|
|
||||||
"babel-loader": "^8.2.2",
|
|
||||||
"bestzip": "^2.2.0",
|
"bestzip": "^2.2.0",
|
||||||
"chromedriver": "^91.0.1",
|
"chromedriver": "^91.0.1",
|
||||||
"copy-webpack-plugin": "^6.4.1",
|
|
||||||
"cross-env": "^7.0.3",
|
|
||||||
"electron": "^13.1.2",
|
"electron": "^13.1.2",
|
||||||
"enzyme": "^3.11.0",
|
"enzyme": "^3.11.0",
|
||||||
"enzyme-adapter-react-15.4": "^1.4.4",
|
"enzyme-adapter-react-16": "^1.15.6",
|
||||||
"eslint": "^7.29.0",
|
"eslint": "^7.28.0",
|
||||||
"eslint-config-airbnb": "^18.2.1",
|
"eslint-config-airbnb": "^18.2.1",
|
||||||
"eslint-plugin-import": "^2.23.4",
|
"eslint-plugin-import": "^2.23.4",
|
||||||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||||||
"eslint-plugin-react": "^7.24.0",
|
"eslint-plugin-react": "^7.24.0",
|
||||||
"eslint-plugin-react-hooks": "^4.2.0",
|
"eslint-plugin-react-hooks": "^4.2.0",
|
||||||
"file-loader": "^6.2.0",
|
|
||||||
"gitbook-cli": "^2.3.2",
|
"gitbook-cli": "^2.3.2",
|
||||||
"jest": "^26.6.3",
|
|
||||||
"pug-html-loader": "^1.1.5",
|
|
||||||
"raw-loader": "^4.0.2",
|
|
||||||
"react-addons-test-utils": "^15.6.2",
|
|
||||||
"react-transform-catch-errors": "^1.0.2",
|
"react-transform-catch-errors": "^1.0.2",
|
||||||
"react-transform-hmr": "^1.0.4",
|
"react-transform-hmr": "^1.0.4",
|
||||||
"rimraf": "^3.0.2",
|
|
||||||
"selenium-webdriver": "^3.6.0",
|
"selenium-webdriver": "^3.6.0",
|
||||||
"sinon-chrome": "^1.2.0",
|
"sinon-chrome": "^1.2.0"
|
||||||
"style-loader": "^1.3.0",
|
|
||||||
"webpack": "^4.46.0",
|
|
||||||
"webpack-cli": "^3.3.12"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"jsan": "^3.1.13",
|
|
||||||
"lodash": "^4.17.21",
|
|
||||||
"react": "^15.7.0",
|
|
||||||
"react-dom": "^15.7.0",
|
|
||||||
"react-icons": "^3.11.0",
|
|
||||||
"react-json-tree": "^0.15.0",
|
|
||||||
"react-redux": "^5.1.2",
|
|
||||||
"redux": "^3.7.2",
|
|
||||||
"redux-devtools": "^3.7.0",
|
|
||||||
"redux-devtools-instrument": "^1.10.0",
|
|
||||||
"remotedev-app": "^0.10.13-beta",
|
|
||||||
"remotedev-monitor-components": "^0.0.5",
|
|
||||||
"remotedev-serialize": "^0.1.9",
|
|
||||||
"remotedev-slider": "^1.1.3",
|
|
||||||
"remotedev-utils": "0.1.6"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
19078
extension/yarn.lock
19078
extension/yarn.lock
File diff suppressed because it is too large
Load Diff
|
@ -6,6 +6,7 @@
|
||||||
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
||||||
"@babel/plugin-transform-runtime": "^7.14.5",
|
"@babel/plugin-transform-runtime": "^7.14.5",
|
||||||
"@babel/preset-env": "^7.14.5",
|
"@babel/preset-env": "^7.14.5",
|
||||||
|
"@babel/preset-react": "^7.14.5",
|
||||||
"@babel/preset-typescript": "^7.14.5",
|
"@babel/preset-typescript": "^7.14.5",
|
||||||
"@types/jest": "^26.0.23",
|
"@types/jest": "^26.0.23",
|
||||||
"@types/node": "^14.17.3",
|
"@types/node": "^14.17.3",
|
||||||
|
@ -31,6 +32,7 @@
|
||||||
"jest": "^26.6.3",
|
"jest": "^26.6.3",
|
||||||
"lerna": "^3.22.1",
|
"lerna": "^3.22.1",
|
||||||
"prettier": "^2.3.1",
|
"prettier": "^2.3.1",
|
||||||
|
"pug-html-loader": "^1.1.5",
|
||||||
"raw-loader": "^4.0.2",
|
"raw-loader": "^4.0.2",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"style-loader": "^1.3.0",
|
"style-loader": "^1.3.0",
|
||||||
|
@ -60,6 +62,7 @@
|
||||||
"test:all": "jest"
|
"test:all": "jest"
|
||||||
},
|
},
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
|
"extension",
|
||||||
"packages/*",
|
"packages/*",
|
||||||
"packages/d3-state-visualizer/examples/tree",
|
"packages/d3-state-visualizer/examples/tree",
|
||||||
"packages/react-json-tree/examples",
|
"packages/react-json-tree/examples",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user