mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
1ef86dc751
* chore(deps): update all non-major dependencies * Update snapshots Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.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": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.15.0"
|
|
},
|
|
"dependencies": {
|
|
"@redux-devtools/app": "^2.1.3",
|
|
"@types/react": "^18.0.26",
|
|
"apollo-server-express": "^3.11.1",
|
|
"body-parser": "^1.20.1",
|
|
"chalk": "^4.1.2",
|
|
"cors": "^2.8.5",
|
|
"cross-spawn": "^7.0.3",
|
|
"electron": "^22.0.0",
|
|
"express": "^4.18.2",
|
|
"getport": "^0.1.0",
|
|
"graphql": "^16.6.0",
|
|
"knex": "^2.3.0",
|
|
"lodash": "^4.17.21",
|
|
"minimist": "^1.2.7",
|
|
"morgan": "^1.10.0",
|
|
"open": "^8.4.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-is": "^18.2.0",
|
|
"semver": "^7.3.8",
|
|
"socketcluster-server": "^17.2.0",
|
|
"sqlite3": "^5.1.4",
|
|
"styled-components": "^5.3.6",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.19.2",
|
|
"@types/cors": "^2.8.13",
|
|
"@types/cross-spawn": "^6.0.2",
|
|
"@types/express": "^4.17.15",
|
|
"@types/jest": "^29.2.4",
|
|
"@types/lodash": "^4.14.191",
|
|
"@types/minimist": "^1.2.2",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/node": "^18.11.17",
|
|
"@types/semver": "^7.3.13",
|
|
"@types/socketcluster-client": "^16.0.0",
|
|
"@types/socketcluster-server": "^16.1.0",
|
|
"@types/styled-components": "^5.1.26",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/uuid": "^9.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.47.0",
|
|
"@typescript-eslint/parser": "^5.47.0",
|
|
"eslint": "^8.30.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^27.1.7",
|
|
"jest": "^29.3.1",
|
|
"ncp": "^2.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"socketcluster-client": "^17.1.0",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "~4.9.4"
|
|
}
|
|
}
|