-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "session-playwright",
"packageManager": "pnpm@10.28.1",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:session-foundation/session-playwright.git",
"author": "Audric Ackermann <audric@loki.network>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.24",
"allure-commandline": "^2.38.1",
"allure-playwright": "3.6.0",
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"electron": "40.0.0",
"eslint": "^10.1.0",
"eslint-plugin-perfectionist": "^5.7.0",
"fs-extra": "^11.3.4",
"globals": "^17.4.0",
"lodash": "^4.17.23",
"playwright": "^1.59.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"uuid": "^13.0.0"
},
"scripts": {
"build": "pnpm tsc --watch",
"lint": "pnpm prettier . --write --cache && pnpm eslint .",
"lint-check": "pnpm prettier . --check && pnpm eslint .",
"dev": "pnpm tsc --watch",
"test": "playwright test",
"test-rerun": "PLAYWRIGHT_WORKERS_COUNT=1 PRINT_FAILED_TEST_LOGS=1 npx playwright test --last-failed",
"watch": "tsc -w",
"sync": "./sync-localization.sh",
"allure-create": "allure generate ./allure-results",
"allure-open": "allure open ./allure-report"
}
}