mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
7f873a94a6
Co-authored-by: Renovate Bot <bot@renovateapp.com>
98 lines
2.8 KiB
JSON
98 lines
2.8 KiB
JSON
{
|
|
"name": "@redux-devtools/cli",
|
|
"version": "1.0.7",
|
|
"description": "CLI for remote debugging with Redux DevTools.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"src",
|
|
"app",
|
|
"index.js",
|
|
"defaultDbOptions.json"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"redux-devtools": "bin/redux-devtools.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && ncp ./src/api/schema_def.graphql ./dist/api/schema_def.graphql",
|
|
"start": "node ./bin/redux-devtools.js",
|
|
"start:electron": "node ./bin/redux-devtools.js --open",
|
|
"clean": "rimraf dist",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.15.0"
|
|
},
|
|
"dependencies": {
|
|
"@redux-devtools/app": "^2.1.3",
|
|
"@types/react": "^17.0.44",
|
|
"apollo-server-express": "^3.6.7",
|
|
"body-parser": "^1.20.0",
|
|
"chalk": "^4.1.2",
|
|
"cors": "^2.8.5",
|
|
"cross-spawn": "^7.0.3",
|
|
"electron": "^18.0.3",
|
|
"express": "^4.17.3",
|
|
"getport": "^0.1.0",
|
|
"graphql": "^16.3.0",
|
|
"knex": "^0.95.15",
|
|
"lodash": "^4.17.21",
|
|
"minimist": "^1.2.6",
|
|
"morgan": "^1.10.0",
|
|
"open": "^8.4.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-is": "^17.0.2",
|
|
"semver": "^7.3.6",
|
|
"socketcluster": "^14.4.2",
|
|
"sqlite3": "^5.0.2",
|
|
"styled-components": "^5.3.5",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.19.2",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/cross-spawn": "^6.0.2",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/lodash": "^4.14.181",
|
|
"@types/minimist": "^1.2.2",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/semver": "^7.3.9",
|
|
"@types/socketcluster": "^14.0.4",
|
|
"@types/socketcluster-client": "^13.0.5",
|
|
"@types/socketcluster-server": "^14.2.6",
|
|
"@types/styled-components": "^5.1.25",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
"@typescript-eslint/parser": "^5.18.0",
|
|
"eslint": "^8.13.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^26.1.4",
|
|
"jest": "^27.5.1",
|
|
"ncp": "^2.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"socketcluster-client": "^14.3.2",
|
|
"supertest": "^6.2.2",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "~4.5.5"
|
|
}
|
|
}
|