-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
52 lines (52 loc) · 1.93 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
{
"version": "0.0.1",
"private": true,
"license": "MIT",
"repository": "https://github.com/dohomi/react-hook-form-mui",
"homepage": "https://react-hook-form-material-ui.vercel.app",
"keywords": [
"react",
"mui",
"material-ui",
"react-hook-form"
],
"workspaces": [
"apps/*",
"packages/*"
],
"name": "react-hook-form-mui-monorepo",
"author": "Dominic Garms",
"scripts": {
"prepare": "cd packages/rhf-mui && yarn run build && simple-git-hooks",
"storybook": "cd apps/storybook && yarn storybook",
"next": "cd apps/nextjs && yarn dev",
"watch": "cd packages/rhf-mui && yarn run watch",
"build:storybook": "cd apps/storybook && yarn install && yarn build-storybook",
"sb-start": "cd apps/storybook && yarn && yarn build-storybook && yarn start-storybook",
"check-types": "cd packages/rhf-mui && tsc --noemit",
"lint": "npx @biomejs/biome lint --apply apps/storybook/stories packages/rhf-mui/src apps/nextjs/src",
"prettier": "npx @biomejs/biome format --write apps/storybook/stories packages/rhf-mui/src apps/nextjs/src",
"deploy": "yarm build && cd apps/storybook/storybook-static && vercel --name react-hook-form-material-ui --prod",
"build": "yarn lint && yarn prettier && cd packages/rhf-mui && yarn build",
"upgrade:sb": "yarn up '@storybook/*' storybook -E",
"upgrade:typescript": "yarn up typescript -E",
"upgrade:rhf": "yarn up react-hook-form -E",
"upgrade:mui": "yarn up '@mui/*' date-fns '@emotion/*' -E",
"upgrade:next": "yarn up next eslint-config-next -E",
"upgrade:react": "yarn up react react-dom -E",
"test": "cd apps/storybook && yarn chromatic"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"release": "^6.3.1",
"simple-git-hooks": "^2.8.1",
"typescript": "5.5.3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts,tsx}": []
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}