-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "@rocket.chat/fuselage-monorepo",
"private": true,
"workspaces": [
"packages/*",
"tools/*"
],
"devDependencies": {
"@changesets/changelog-github": "~0.5.0",
"@changesets/cli": "~2.27.9",
"husky": "~9.1.6",
"hygen": "~6.2.11",
"pinst": "~3.0.0",
"turbo": "~2.2.3",
"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"
},
"engines": {
"node": "22.9.0"
},
"volta": {
"node": "22.9.0",
"yarn": "4.5.1"
},
"packageManager": "yarn@4.5.1",
"eslintConfig": {
"extends": "@rocket.chat/eslint-config-alt"
},
"resolutions": {
"jsdom": "25.0.1"
}
}