-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bistrot-e2e",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf allure-results && rimraf allure-report && rimraf test-results && rimraf playwright-report && rimraf junit-results && rimraf lighthouse",
"format": "prettier --write .",
"install-deps": "npx playwright install-deps",
"lint": "prettier --check . && eslint .",
"play-report": "npx playwright show-report",
"prepare": "husky",
"reinstall": "npx playwright install",
"test": "npm run chromium",
"test-head": "npm run chromium -- --headed",
"chromium": "npm run clean && npx playwright test --project=chromium",
"firefox": "npm run clean && npx playwright test --project=firefox",
"webkit": "npm run clean && npx playwright test --project=webkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hypersequent/bistro-e2e.git"
},
"keywords": [
"playwright",
"playwright-test",
"web test automation"
],
"author": "Hypersequent",
"license": "0BSD",
"bugs": {
"url": "https://github.com/Hypersequent/bistro-e2e/issues"
},
"homepage": "https://github.com/Hypersequent/bistro-e2e#readme",
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"dotenv": "^16.4.5",
"rimraf": "^6.0.1",
"zod": "^3.22.4"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"prettier --write",
"eslint --ext js,ts,svelte --quiet --fix --"
],
"*.{md,mdx,cjs,mjs,yml,yaml,html,mjml,css,scss,json}": [
"prettier --write"
]
}
}