-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
62 lines (62 loc) · 2 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
59
60
61
62
{
"name": "@rocket.chat/fuselage-monorepo",
"private": true,
"workspaces": [
"packages/*",
"tools/*"
],
"devDependencies": {
"@changesets/changelog-github": "~0.5.0",
"@changesets/cli": "~2.27.9",
"@eslint/js": "~9.14.0",
"@rocket.chat/prettier-config": "workspace:~",
"@types/eslint__js": "~8.42.3",
"eslint": "~9.14.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-mdx": "~3.1.5",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-react": "~7.37.2",
"eslint-plugin-react-hooks": "~5.0.0",
"globals": "~15.12.0",
"husky": "~9.1.6",
"hygen": "~6.2.11",
"pinst": "~3.0.0",
"prettier": "~3.3.3",
"turbo": "~2.2.3",
"typescript": "~5.6.3",
"typescript-eslint": "~8.13.0",
"update-readme": "workspace:~"
},
"scripts": {
"postinstall": "husky install && yarn build",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"ci": "yarn turbo run build lint test build-storybook --cache-dir=\".turbo\"",
"clean": "yarn workspaces foreach -v --topological-dev run clean",
"build": "yarn turbo run build",
"lint": "yarn turbo run lint",
"lint-and-fix": "yarn workspaces foreach -v --topological-dev --all run lint-and-fix",
"test": "yarn turbo run test",
"docs": "yarn turbo run docs",
"build-storybook": "yarn turbo run build-storybook --cache-dir=\".turbo\"",
"update-readme": "update-readme",
"resolve-workspace-deps": "yarn workspace scripts run resolve-workspace-deps",
"create-package": "hygen create-package",
"release": "yarn changeset publish",
"changeset": "changeset",
"release-next": "yarn workspaces foreach --no-private -v npm publish --tag next --tolerate-republish",
"prettier": "prettier --plugin=@prettier/plugin-xml"
},
"engines": {
"node": "22.9.0"
},
"volta": {
"node": "22.9.0",
"yarn": "4.5.1"
},
"packageManager": "[email protected]",
"resolutions": {
"jsdom": "25.0.1"
}
}