-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@redux-devtools/cli",
"version": "5.0.0",
"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"
],
"type": "module",
"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": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prepack": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@apollo/server": "^5.5.1",
"@as-integrations/express5": "^1.1.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@redux-devtools/app": "workspace:^",
"@reduxjs/toolkit": "^2.12.0",
"@types/react": "^19.2.17",
"body-parser": "^2.3.0",
"chalk": "^5.6.2",
"cors": "^2.8.6",
"cross-spawn": "^7.0.6",
"electron": "^42.4.1",
"express": "^5.2.1",
"get-port": "^7.2.0",
"graphql": "^17.0.1",
"knex": "^3.2.10",
"lodash-es": "^4.18.1",
"minimist": "^1.2.8",
"morgan": "^1.11.0",
"open": "^11.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-is": "^19.2.7",
"semver": "^7.8.4",
"socketcluster-server": "^20.0.0",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@jest/globals": "^30.4.1",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/cross-spawn": "^6.0.6",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/morgan": "^1.9.10",
"@types/node": "^24.13.2",
"@types/semver": "^7.7.1",
"@types/socketcluster-client": "^20.0.0",
"@types/socketcluster-server": "^20.0.0",
"@types/supertest": "^7.2.0",
"globals": "^17.6.0",
"jest": "^30.4.2",
"ncp": "^2.0.0",
"rimraf": "^6.1.3",
"socketcluster-client": "^20.0.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"typescript": "~6.0.3"
}
}