forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "@rocket.chat/fuselage-root",
"private": true,
"version": "0.31.16",
"workspaces": [
"packages/*",
"tools/*"
],
"devDependencies": {
"bump": "workspace:~",
"husky": "~7.0.4",
"hygen": "~6.1.0",
"lerna": "~4.0.0",
"lint-staged": "~12.3.3",
"turbo": "~1.1.2",
"update-readme": "workspace:~",
"webpack": "~5.68.0"
},
"scripts": {
"postinstall": "husky install",
"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 run lint-and-fix",
"test": "yarn turbo run test",
"docs": "yarn workspaces foreach -v --topological-dev 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",
"bump-next": "yarn workspaces foreach --no-private -v run bump-next",
"release-next": "yarn workspaces foreach --no-private -v npm publish --tag next --tolerate-republish"
},
"devEngines": {
"node": "~14.17.6"
},
"volta": {
"node": "14.17.6",
"yarn": "1.22.11"
},
"packageManager": "yarn@3.2.1"
}