-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"name": "react-fluid-tabs-monorepo",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"dev": "yarn npm-run-all --parallel dev-demo-mui watch-build-packages",
"build": "yarn workspaces foreach -Rpi --from 'packages/*' run build",
"watch-build-packages": "yarn workspaces foreach -Rpi --from 'packages/*' run build --watch",
"dev-demo-mui": "yarn workspace material-ui-demo dev",
"publish": "yarn workspaces foreach -Rp --from 'packages/*' run npm-publish",
"version-bump": "yarn workspaces foreach -R --from 'packages/*' version"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "latest",
"jsdom": "^20.0.0",
"prettier": "3.1.0",
"typescript": "^5.4.5",
"vite": "^3.0.3",
"vite-plugin-dts": "^1.4.0",
"vite-plugin-style-inject": "^0.0.1",
"vitest": "^0.19.1",
"yarn-run-all": "^3.1.1"
}
}