-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.15 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"modules/*/element-web",
"modules/*/synapse"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint:workflows": "find .github/workflows -type f \\( -iname '*.yaml' -o -iname '*.yml' \\) | xargs -I {} sh -c 'echo \"Linting {}\"; action-validator \"{}\"'",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint": "eslint --max-warnings 0 modules/*/element-web/src",
"lint:types": "yarn workspaces run lint:types",
"lint:codestyle": "yarn workspaces run lint:codestyle",
"lint:knip": "knip",
"test": "yarn workspaces run test",
"test:playwright": "playwright test",
"test:playwright:open": "yarn test:playwright --ui",
"test:playwright:screenshots": "playwright-screenshots",
"prepare": "patch-package && husky && yarn workspaces run prepare"
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@element-hq/element-web-module-api": "1.13.0",
"@element-hq/element-web-playwright-common": "^3.1.0",
"@playwright/test": "^1.52.0",
"@stylistic/eslint-plugin": "^5.0.0",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-deprecate": "^0.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-matrix-org": "^3.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.7",
"knip": "^6.0.0",
"lint-staged": "^16.0.0",
"patch-package": "^8.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"packageManager": "yarn@1.22.22"
}