-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "electron-playwright-e2e-test-quick-start",
"version": "0.0.1",
"description": "A Playwright with GitHub Actions E2E Testing Sample for Electron App",
"author": "Tan Shuai <opensource@tanshuai.com>",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "xvfb-maybe -- playwright test",
"wdio": "wdio run ./wdio.conf.js",
"crx": "wdio run ./wdio-crx.conf.js",
"test-local": "node test-local.js",
"test-ssh": "node test-ssh.js",
"debug-ssh": "node debug-ssh.js"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Playwright",
"Electron",
"E2E",
"Testing",
"GitHub Actions",
"quick",
"start",
"tutorial",
"demo"
],
"license": "CC0-1.0",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@wdio/cli": "8.38.2",
"@wdio/local-runner": "8.38.2",
"@wdio/mocha-framework": "8.38.2",
"@wdio/spec-reporter": "8.38.2",
"chai": "^4.3.7",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"wdio-intercept-service": "^4.4.1"
},
"dependencies": {
"@electron/asar": "^3.2.10",
"chromedriver": "^108.0.0",
"cloudinary": "^2.8.0",
"dotenv": "^17.2.3",
"mongoose": "^8.6.1",
"screenshot-desktop": "1.15.0",
"socksv5": "^0.0.6",
"ssh2": "^1.15.0",
"wdio-chromedriver-service": "^8.1.1"
}
}