-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 867 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 867 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": "playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "playwright test --browser=chromium",
"test-html-report": "playwright test --browser=chromium --reporter=html",
"test-json-report": "PLAYWRIGHT_JSON_OUTPUT_NAME=results.json playwright test --browser=chromium --reporter=json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.30.0",
"@types/express": "^4.17.17",
"@types/node": "^18.11.19",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"playwright": "^1.30.0",
"toml": "^3.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2"
}
}