-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 792 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 792 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
{
"name": "playwright-nextjs-coverage-example",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "NODE_V8_COVERAGE=.coverage NODE_OPTIONS=--inspect next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "rm -rf .coverage/ playwright/.cache/ playwright/results/ && playwright test"
},
"dependencies": {
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@playwright/test": "1.41.1",
"@types/chrome-remote-interface": "0.31.14",
"@types/node": "20.11.6",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"chrome-remote-interface": "0.33.0",
"monocart-reporter": "2.2.5",
"typescript": "5.3.3"
}
}