-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.71 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
{
"name": "ui-tests",
"version": "0.0.1",
"exports": {
"./e2e-utils": "./tests/e2e/utils.ts"
},
"description": "",
"homepage": "https://github.com/Pometry/ui-tests",
"bugs": {
"url": "https://github.com/Pometry/ui-tests/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pometry/ui-tests.git"
},
"directories": {
"test": "tests"
},
"scripts": {
"format": "prettier --write .",
"format-check": "prettier --check .",
"eslint": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"eslint-check": "eslint . --report-unused-disable-directives --max-warnings 0",
"install-playwright": "npx playwright install --with-deps",
"test": "npx playwright test",
"test-macos": "npx playwright test -c playwright.macos.config.ts",
"tsc": "tsc",
"prepare": "husky"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unused-imports": "^4.4.1",
"eslint-plugin-yml": "^3.3.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}