-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.09 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.09 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
96
{
"name": "skytest-agent",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"@hono/node-server": "1.19.13",
"@midscene/core@1.7.4": {
"js-yaml": "4.1.1"
},
"@midscene/shared@1.7.4": {
"@modelcontextprotocol/sdk": "1.29.0"
},
"@modelcontextprotocol/sdk": "1.29.0",
"dompurify": "3.4.0",
"hono": "4.12.14",
"follow-redirects": "1.16.0",
"@midscene/android": {
"appium-adb": "12.13.0"
},
"appium-adb": {
".": "12.13.0",
"@appium/support": "7.0.6"
},
"undici": "6.24.1",
"uuid": "14.0.0",
"ajv@8.17.1": "8.18.0",
"ajv@^6.12.4": "6.14.0",
"axios": {
".": "1.15.0",
"follow-redirects": "1.16.0"
},
"form-data@4.0.2": "4.0.4",
"basic-ftp": "5.3.0",
"glob@10.4.5": "10.5.0",
"brace-expansion": "5.0.5",
"minimatch": {
".": "10.2.4",
"brace-expansion": "5.0.5"
},
"js-yaml": "4.1.1",
"lodash": "4.18.1",
"qs": ">=6.14.2",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.6",
"@aws-sdk/xml-builder": "3.972.19",
"fast-xml-parser": "5.7.1",
"monaco-editor": {
".": "0.55.1",
"dompurify": "3.4.0"
},
"@xmldom/xmldom": "0.8.13",
"flatted": "3.4.2",
"socket.io-parser": "4.2.6",
"yauzl": "3.2.1",
"@appium/support": {
".": "7.0.6",
"yauzl": "3.2.1"
},
"extract-zip": {
".": "2.0.1",
"yauzl": "3.2.1"
},
"eslint-plugin-react-hooks": "7.0.1"
},
"scripts": {
"dev": "node tools/run-web-dev.mjs",
"dev:services:up": "docker compose -f infra/docker/docker-compose.local.yml up -d",
"dev:services:down": "docker compose -f infra/docker/docker-compose.local.yml down --remove-orphans",
"dev:services:logs": "docker compose -f infra/docker/docker-compose.local.yml logs -f postgres minio create-minio-bucket",
"build": "npm run --workspace @skytest/web build",
"start": "npm run --workspace @skytest/web start --",
"lint": "npm run --workspace @skytest/web lint",
"audit": "npm run --workspace @skytest/web audit",
"verify": "npm run --workspace @skytest/web verify",
"db:generate": "npm run --workspace @skytest/web db:generate",
"db:push": "npm run --workspace @skytest/web db:push",
"db:migrate:deploy": "npm run --workspace @skytest/web db:migrate:deploy",
"db:migrate:status": "npm run --workspace @skytest/web db:migrate:status",
"db:migrate:resolve": "npm run --workspace @skytest/web db:migrate:resolve",
"db:migrate:test": "npm run --workspace @skytest/web db:migrate:test",
"db:studio": "npm run --workspace @skytest/web db:studio",
"playwright:install": "npm run --workspace @skytest/web playwright:install",
"test": "npm run --workspace @skytest/web test",
"runner:maintenance": "npm run --workspace @skytest/web runner:maintenance",
"skytest": "npm run --workspace @skytest/cli skytest --",
"skytest:help": "npm run --workspace @skytest/cli skytest:help"
},
"devDependencies": {
"@next/env": "16.2.3",
"eslint-plugin-react-hooks": "7.0.1"
}
}