-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 827 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 827 Bytes
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": "forms-rum-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:ui": "playwright test --ui",
"test:report": "node scripts/generate-test-report.js",
"lint": "eslint . --no-ignore",
"lint:fix": "eslint . --no-ignore --fix"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@adobe/rum-distiller": "^1.20.0",
"@playwright/test": "^1.49.0",
"dotenv": "^17.3.1",
"eslint": "^8.57.1",
"jsdom": "^28.1.0",
"serve": "^14.2.4",
"vitest": "^2.1.0"
}
}