forked from nordeck/matrix-meetings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
54
55
56
57
58
{
"name": "root",
"private": true,
"workspaces": [
"matrix-meetings-widget",
"matrix-meetings-bot",
"e2e",
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.3",
"depcheck": "^1.4.7",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"yarn-deduplicate": "^6.0.2"
},
"scripts": {
"start": "yarn workspace @nordeck/matrix-meetings-widget start",
"dev": "yarn workspace @nordeck/matrix-meetings-widget dev",
"build": "yarn workspaces run build",
"tsc": "yarn workspaces run tsc",
"test": "yarn workspace @nordeck/matrix-meetings-widget test",
"test:all": "yarn workspaces run test:all",
"lint": "yarn workspaces run lint",
"depcheck": "yarn depcheck:root && yarn workspaces run depcheck",
"depcheck:root": "depcheck --ignores=prettier-plugin-organize-imports,@changesets/cli",
"deduplicate": "yarn-deduplicate",
"generate-disclaimer": "yarn workspaces run generate-disclaimer",
"docker:build": "yarn workspaces run docker:build",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"translate": "yarn workspaces run translate",
"e2e": "yarn workspace e2e e2e"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --max-warnings=0",
"bash -c \"yarn tsc --pretty\"",
"prettier --write"
],
"*": [
"bash -c \"yarn depcheck\""
],
"*.{yaml,yml,json,md}": [
"prettier --write"
],
"*.{json,js,jsx,ts,tsx}": [
"bash -c \"yarn translate --fail-on-update\""
]
}
}