generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.58 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
{
"private": true,
"workspaces": [
"packages/*",
"modules/*/element-web"
],
"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:js": "eslint --max-warnings 0 modules/*/element-web/src packages/*/src",
"lint:ts": "yarn workspaces run lint:ts",
"lint:knip": "knip",
"test": "yarn workspaces run test",
"prepare": "husky && yarn workspaces run prepare"
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@stylistic/eslint-plugin": "^3.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.8.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-matrix-org": "^2.0.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.7",
"knip": "^5.43.5",
"lint-staged": "^15.4.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}