-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.64 KB
/
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
33
34
35
36
37
38
39
40
41
{
"name": "playwright-starter-kit",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ludovicobesana/PlaywrightStarterKit.git",
"author": "ludovicobesana <[email protected]>",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"prettier": "3.1.0",
"typescript": "^5.2.2"
},
"scripts": {
"test": "ENV=$npm_config_ENV playwright test",
"test:chrome": "ENV=$npm_config_ENV playwright test --project=chromium",
"test:debug": "ENV=$npm_config_ENV playwright test --debug",
"test:headed": "ENV=$npm_config_ENV playwright test --headed",
"test:headed:debug": "ENV=$npm_config_ENV playwright test --headed --debug",
"desktop": "ENV=$npm_config_ENV playwright test --grep @desktop",
"mobile": "ENV=$npm_config_ENV playwright test --grep @mobile",
"desktop:atomic": "ENV=$npm_config_ENV playwright test --grep @desktop --grep @atomic",
"mobile:atomic": "ENV=$npm_config_ENV playwright test --grep @mobile --grep @atomic",
"desktop:flow": "ENV=$npm_config_ENV playwright test --grep @desktop --grep @flow",
"mobile:flow": "ENV=$npm_config_ENV playwright test --grep @mobile --grep @flow",
"prepare": "husky install",
"ui": "npx playwright test --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}