-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
175 lines (175 loc) · 5.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "remote-debugger",
"author": "Christian Bromann <[email protected]>",
"contributors": [
"Chun Shang",
"Heng Zhong",
"Greg Lockwood",
"Benji Huang",
"Ximing Dai",
"Xinsong Yang",
"Liuying Zhang"
],
"description": "A Node.JS implementation of the Chrome Devtools for debugging arbitrary web platforms",
"version": "0.1.19",
"main": "./build/index.js",
"directories": {
"lib": "lib"
},
"bin": {},
"keywords": [
"chrome",
"chromium",
"devtools",
"remote",
"debugging"
],
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "run-s clean copy patchDevtools build:*",
"build:typescript": "tsc",
"build:launcher": "webpack --progress --colors --config config/webpack.config",
"clean": "rimraf -rf ./build",
"copy": "cpx ./views ./build",
"dev": "MODE=development npm-run-all build --parallel dev:*",
"dev:launcher": "npm run build:launcher -- --watch",
"dev:server": "nodemon build/index.js --watch build",
"dev:typescript": "tsc --watch",
"formatCode": "prettier --single-quote --tab-width 2 --trailing-comma es5 --write \"lib/{!(chrome-devtools-frontend)/**/*.js,*.js,**/*.ts}\"",
"lint": "eslint ./ --ext .js,.ts",
"patchDevtools": "node scripts/debugExtension.js",
"restore": "node scripts/restore.js",
"start": "node build/index.js",
"test": "run-s test:*",
"test:unit": "run-s test:unit:*",
"test:unit:backend": "jest",
"test:unit:frontend": "jest --config jest.frontend.config.js",
"es-check": "es-check es5 './build/scripts/*.js'"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0",
"@types/lodash-es": "^4.17.3",
"@webcomponents/url": "^0.7.5",
"body-parser": "^1.19.0",
"chrome-devtools-frontend": "^1.0.576743",
"cookie-parser": "~1.4.3",
"core-js": "^3.6.5",
"cors": "2.8.3",
"cpx": "^1.5.0",
"css": "^2.2.4",
"ejs": "2.5.6",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"js-cookie": "~2.1.3",
"lodash-es": "^4.17.15",
"mime-db": "1.26.0",
"mime-types": "~2.1.14",
"npmlog": "4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"serve-favicon": "~2.4.1",
"socket.io": "^2.3.0",
"uuid": "^3.4.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/compat-data": "^7.16.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/ejs": "^3.0.1",
"@types/events": "^3.0.0",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.3",
"@types/js-cookie": "^2.2.5",
"@types/mime-db": "^1.27.0",
"@types/mime-types": "^2.1.0",
"@types/npmlog": "^4.1.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/serve-favicon": "^2.5.0",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^7.0.0",
"@types/ws": "^7.2.2",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"chalk": "^3.0.0",
"css-loader": "^5.0.1",
"devtools-protocol": "0.0.719330",
"error-stack-parser": "^2.0.6",
"es-check": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.3",
"jsan": "^3.1.13",
"jsdom": "^16.2.2",
"jsdom-worker": "^0.1.0",
"lru-fast": "^0.2.2",
"node-fetch": "^2.6.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.0.1",
"prettier": "1.19.1",
"redux": "^4.0.5",
"redux-devtools-core": "^0.2.1",
"redux-devtools-instrument": "^1.9.6",
"rimraf": "^2.6.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^2.2.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"url-loader": "^4.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^2.11.5",
"webpack-merge": "^3.0.0",
"whatwg-fetch": "^3.0.0",
"xhr": "^2.5.0"
}
}