-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 970 Bytes
/
package.json
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
{
"name": "nextjs-with-playwright",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:clean": "rimraf .v8-coverage",
"test:start": "cross-env NODE_V8_COVERAGE=.v8-coverage NODE_OPTIONS=--inspect=9229 next dev",
"test:command": "npm run test:clean && npm run test:start",
"test": "playwright test"
},
"license": "MIT",
"dependencies": {
"next": "^14.2.11",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"@types/react": "^18.3.6",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"eslint-config-plus": "^2.0.2",
"monocart-coverage-reports": "^2.10.8",
"monocart-reporter": "^2.8.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}