forked from d07RiV/ws-inspector
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 KB
/
package.json
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
{
"name": "WsInspector",
"version": "0.0.6",
"description": "Chrome extension to monitor WebSocket frames",
"targets": {
"chrome": "58"
},
"scripts": {
"build": "node scripts/build.js",
"build-market": "npm version patch && rm -rf ./build/* && rm -f build.zip && npm run build && zip build.zip ./build/*",
"start": "node scripts/webserver.js",
"server": "node test/echo-server.js",
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx src",
"es": "eslint ./src "
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/chrome": "^0.0.197",
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.185",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/react-fontawesome": "^1.6.5",
"@types/react-inspector": "^4.0.2",
"@types/react-virtualized": "^9.21.21",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-preset-react-app": "^10.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.1.0",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"ip": "^1.1.8",
"node-sass": "^7.0.3",
"pattern-replace-loader": "^1.0.5",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-dev-server": "4.11.1",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"mobx": "^6.6.2",
"mobx-react": "^7.5.3",
"mobx-utils": "^6.0.5",
"parse-json": "^6.0.2",
"path": "^0.12.7",
"react": "^17.0.2",
"react-collapse-pane": "^3.0.1",
"react-dom": "^17.0.2",
"react-fontawesome": "^1.7.1",
"react-inspector": "^6.0.1",
"react-split-pane": "^0.1.92",
"react-virtualized": "^9.22.3"
}
}