-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "playwright-template",
"version": "1.0.0",
"description": "Playwright test template",
"main": "index.js",
"scripts": {
"tests:chrome": "playwright test --config=playwright.config.ts --project=Chromium",
"tests:firefox": "playwright test --config=playwright.config.ts --project=Firefox",
"tests:webkit": "playwright test --config=playwright.config.ts --project=Webkit",
"tests:api": "playwright test --config=api.config.ts --project=Chromium",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"prettier": "npx prettier . --write",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksenecki/playwright-template.git"
},
"keywords": [
"playwright",
"template",
"tests",
"supertest"
],
"author": "ksenecki",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.36.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/supertest": "^2.0.12",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"supertest": "^6.3.3",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --no-stash",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"bugs": {
"url": "https://github.com/ksenecki/playwright-template/issues"
},
"homepage": "git+https://github.com/ksenecki/playwright-template#readme",
"type": "module"
}