-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "papastudio",
"productName": "Papa Stud.io",
"version": "1.0.0",
"description": "Screenshot failure reviewer for Android testing tools",
"private": true,
"main": "electron/main.js",
"scripts": {
"start": "node src/server.js",
"electron": "electron .",
"package": "electron-forge package",
"make": "electron-forge make",
"test": "node --test tests/node/*.test.js",
"test:screenshots": "docker run --rm -e CI=true papastudio-test npx playwright test",
"test:screenshots:update": "docker run --rm -v ./tests/screenshots:/app/tests/screenshots papastudio-test npx playwright test --update-snapshots",
"test:screenshots:build": "docker build -f Dockerfile.test -t papastudio-test ."
},
"dependencies": {
"express": "^5.0.0",
"fast-glob": "^3.3.0",
"fast-xml-parser": "^5.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@playwright/test": "1.61.1",
"electron": "^42.3.3"
}
}