-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "web-api-2",
"type": "module",
"scripts": {
"build": "tsc",
"start": "./start.sh",
"dev": "nodemon --ignore 'repeatables/**' --ignore 'screenshots/**' --exec 'tsx' src/server.ts",
"debug": "NODE_OPTIONS='--inspect-brk' tsx --inspect src/server.ts",
"postinstall": "playwright install",
"cli": "tsx src/cli.ts",
"test:command": "tsx src/command-execution-test.ts",
"test:api": "tsx src/command-api-test.ts",
"test:session": "tsx src/session-test.ts",
"cli-demo": "tsx cli-demo.js"
},
"dependencies": {
"@browserbasehq/sdk": "2.3.0",
"@mui/material": "^7.1.0",
"@playwright/test": "^1.49.1",
"@roamhq/wrtc": "^0.9.0",
"@types/express": "^4.17.21",
"@types/node": "^22.13.11",
"axios": "^1.6.7",
"boxen": "^8.0.1",
"browser-use": "^0.0.1",
"canvas": "^3.1.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"css-selector-generator": "^3.6.9",
"dockerode": "^3.3.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"http-proxy-middleware": "^3.0.5",
"node-fetch": "^3.3.2",
"node-pty": "^1.0.0",
"pm2": "^5.4.3",
"react-resizable-panels": "^3.0.2",
"react-vnc": "^3.1.0",
"rrweb": "^2.0.0-alpha.4",
"uuid": "^9.0.1",
"ws": "^8.18.2",
"zod": "^3.3.24"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/dockerode": "^3.3.35",
"@types/ws": "^8.18.1",
"nodemon": "^3.1.9",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}