-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.19 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
{
"name": "expense-manager-tests",
"version": "2.3.0",
"description": "E2E tests for Expense Manager using Playwright",
"scripts": {
"build:static": "tsc --project tsconfig.static.json --noEmit && vite build",
"watch:static": "vite build --watch",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"test:chrome": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"report": "playwright show-report",
"codegen": "playwright codegen http://localhost:5000"
},
"keywords": [
"playwright",
"testing",
"e2e"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.0.0",
"@types/yaireo__tagify": "^4.27.0",
"typescript": "^5.9.0",
"vite": "^8.0.3"
},
"dependencies": {
"@types/sortablejs": "^1.15.9",
"@yaireo/tagify": "^4.36.0",
"chart.js": "^4.5.1",
"sortablejs": "^1.15.7"
}
}