-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "@wdio/devtools-backend",
"version": "1.3.1",
"description": "Backend service to spin up WebdriverIO Devtools",
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-backend"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"typeScriptVersion": "^5.0.0",
"scripts": {
"dev": "run-p dev:*",
"dev:ts": "tsc --watch",
"dev:app": "nodemon --watch ./dist ./dist/index.js",
"build": "tsc -p ./tsconfig.json",
"lint": "eslint ."
},
"dependencies": {
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"@wdio/cli": "9.27.0",
"@wdio/devtools-app": "workspace:^",
"@wdio/logger": "9.18.0",
"fastify": "^5.8.4",
"get-port": "^7.1.0",
"import-meta-resolve": "^4.1.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"nodemon": "^3.1.14",
"ws": "^8.18.3"
}
}