-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "swim",
"description": "Monorepo for all Swim TypeScript projects",
"private": true,
"license": "TODO",
"repository": {
"type": "git",
"url": "https://github.com/swim-io/swim"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"engines": {
"node": "^16",
"yarn": "^3.2"
},
"scripts": {
"clean": "find . -name node_modules -type d -maxdepth 3 -prune -print -exec rm -rf '{}' +",
"format": "yarn workspaces foreach --topological-dev --parallel --verbose run format",
"build": "yarn workspaces foreach --topological-dev --parallel --verbose run build",
"build-packages": "yarn workspaces foreach --topological-dev --parallel --verbose --no-private run build",
"release-ui": "yarn workspace @swim-io/ui release",
"publish-next": "yarn workspaces foreach --no-private npm publish --access public --tag next",
"publish-latest": "yarn workspaces foreach --no-private npm publish --access public",
"postinstall": "husky install"
},
"resolutions": {
"@types/react": "^17",
"react": "^17",
"react-error-overlay": "6.0.9"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"dependency-cruiser": "^11.12.0",
"fast-glob": "^3.2.11",
"husky": "^8.0.1",
"nx": "14.4.3"
}
}