-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
53 lines (53 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "playwright-api-test-demo",
"version": "1.0.0",
"description": "This repository will serve as a place where I add API test Automation checks for articles written at <https://playwrightsolutions.com>",
"main": "index.js",
"scripts": {
"ut": "jest --verbose",
"test": "npx playwright test --grep-invert=@unsatisfactory",
"test:generate:schema": "GENERATE_SCHEMA_TRACKING_DATA=true npx playwright test --grep-invert=@unsatisfactory",
"test:staging": "test_env=staging npx playwright test --grep-invert=@unsatisfactory",
"test:local": "test_env=local npx playwright test --grep-invert=@unsatisfactory",
"test:happy": "npx playwright test --grep @happy --grep-invert=@unsatisfactory",
"test:unsatisfactory": "npx playwright test --grep=@unsatisfactory",
"ui": "npx playwright test --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"prepare": "husky install",
"changed": "npx playwright test --only-changed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playwrightsolutions/playwright-api-test-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/playwrightsolutions/playwright-api-test-demo/issues"
},
"homepage": "https://github.com/playwrightsolutions/playwright-api-test-demo#readme",
"devDependencies": {
"@currents/playwright": "^0.10.6",
"@faker-js/faker": "^8.2.0",
"@playwright/test": "^1.47.2",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"ajv": "^8.12.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"genson-js": "^0.0.8",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}