-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.33 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.33 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
{
"name": "content-sources-playwright-api-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint '_playwright-tests/tests/**/*.{js,jsx,ts,tsx}' --no-error-on-unmatched-pattern",
"lint:fix": "eslint --fix '_playwright-tests/tests/**/*.{js,jsx,ts,tsx}' --no-error-on-unmatched-pattern",
"format": "prettier --write . --config ./.prettierrc",
"format:check": "prettier --check . --config ./.prettierrc",
"verify": "yarn lint && yarn format:check && yarn playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@currents/playwright": "1.22.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.51.1",
"@types/node": "^24.0.0",
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"content-sources-test-utils": "file:./_playwright-tests/test-utils",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"prettier": "^3.3.3",
"pretty-format": "^30.0.0"
},
"dependencies": {
"dotenv": "^17.0.0",
"github-actions-ctrf": "^0.0.58",
"playwright-ctrf-json-reporter": "^0.0.27"
}
}