-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.82 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
{
"name": "testcast",
"version": "1.0.0",
"description": "TestCast — Enterprise E2E Test Boilerplate menggunakan Playwright + TypeScript",
"scripts": {
"test": "playwright test",
"test:quick": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"report:excel": "npx tsx scripts/generate-excel-report.ts",
"report:allure": "allure serve allure-results",
"report:allure:generate": "allure generate allure-results --output test-results/allure-report && allure open test-results/allure-report",
"report": "npx playwright show-report",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"db:test": "tsx scripts/test-db-connection.ts"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/s3-request-presigner": "^3.540.0",
"@biomejs/biome": "^1.9.4",
"@launchdarkly/node-server-sdk": "^9.10.10",
"@playwright/test": "^1.40.0",
"@types/node": "^20.0.0",
"allure-commandline": "^2.38.1",
"allure-playwright": "^3.7.1",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"mysql2": "^3.11.0",
"tsx": "^4.21.0",
"typescript": "^5.6.2",
"xlsx": "^0.18.5"
},
"lint-staged": {
"*.ts": "biome check --write",
"*.json": "biome format --write"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}