-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 933 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 933 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
31
32
33
{
"name": "e2e_poc_playwright_typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test --reporter=html --project=chrome",
"test:headed": "npx playwright test --reporter=html --project=chrome --headed",
"test:ui": "npm run test -- --ui",
"test:debug": "npm run test -- --workers=1 --debug",
"format": "prettier --write .",
"lint": "eslint --fix . --ext .ts,.tsx"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.43.1",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "5.38.1",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-promise": "6.0.1",
"prettier": "3.2.5",
"typescript": "5.1.6"
},
"dependencies": {
"dotenv": "16.4.5"
}
}