forked from yamada-ui/yamada-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 5.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "yamada-ui",
"version": "1.0.0",
"private": true,
"engines": {
"node": "18"
},
"license": "MIT",
"author": "Hirotomo Yamada <hirotomo.yamada@avap.co.jp>",
"repository": {
"type": "git",
"url": "git+https://github.com/hirotomoyamada/yamada-ui"
},
"scripts": {
"prepare": "husky install",
"postinstall": "cd packages/cli && pnpm build",
"storybook": "storybook dev -p 6006",
"serve:storybook": "npx http-server ./storybook-static",
"build:storybook": "storybook build",
"prebuild": "pnpm --prefix packages/cli build && pnpm gen:tokens",
"build": "turbo run build --filter=!./examples/*",
"build:fast": "turbo run build:fast --filter=!./examples/*",
"dev": "turbo run dev --filter=!./examples/*",
"lint": "eslint packages/**/**/src scripts/**/** --ext .ts,.tsx --max-warnings 0 --config .eslintrc --cache",
"format": "prettier --write .",
"format:check": "prettier --check packages/**/**/src stories/**/** scripts/**/** --cache",
"format:write": "prettier --write packages/**/**/src stories/**/** scripts/**/** --cache",
"typecheck": "tsc --noEmit",
"test": "jest",
"quality": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
"gen:css": "tsx scripts/generate-css",
"gen:tokens": "yamada-cli tokens packages/theme/src/index.ts --out packages/core/src/generated-theme.types.ts",
"gen:component": "plop component && pnpm install",
"gen:hook": "plop hook && pnpm install",
"gen:docs": "pnpm --filter=./packages/components/** gen:docs",
"changelog": "tsx scripts/changelog",
"changelog:latest": "tsx scripts/changelog --latest",
"version:dev": "changeset version --snapshot dev",
"version:next": "changeset version --snapshot next",
"release": "changeset publish",
"release:dev": "changeset publish --tag dev",
"release:next": "changeset publish --tag next",
"release:discord": "tsx scripts/discord",
"release:mattermost": "tsx scripts/mattermost",
"clean": "pnpm -r --parallel exec rimraf dist .turbo *.log",
"react:start": "pnpm --prefix examples/create-react-app start",
"react:build": "pnpm --prefix examples/create-react-app build",
"next-pages:dev": "pnpm --prefix examples/nextjs-pages dev",
"next-pages:build": "pnpm --prefix examples/nextjs-pages build",
"next-pages:start": "pnpm --prefix examples/nextjs-pages start",
"next-app:dev": "pnpm --prefix examples/nextjs-app dev",
"next-app:build": "pnpm --prefix examples/nextjs-app build",
"next-app:start": "pnpm --prefix examples/nextjs-app start"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@changesets/get-release-plan": "^4.0.0",
"@changesets/types": "^6.0.0",
"@clack/prompts": "^0.7.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@faker-js/faker": "^8.3.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@octokit/rest": "^20.0.2",
"@storybook/addon-a11y": "7.6.7",
"@storybook/addon-backgrounds": "7.6.7",
"@storybook/addon-docs": "7.6.7",
"@storybook/addon-measure": "7.6.7",
"@storybook/addon-storysource": "7.6.7",
"@storybook/addon-viewport": "7.6.7",
"@storybook/blocks": "7.6.7",
"@storybook/cli": "7.6.7",
"@storybook/manager-api": "7.6.7",
"@storybook/react": "7.6.7",
"@storybook/react-vite": "7.6.7",
"@storybook/theming": "7.6.7",
"@swc-node/jest": "^1.6.8",
"@swc/core": "^1.3.100",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.10",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.2",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@yamada-ui/calendar": "workspace:*",
"@yamada-ui/carousel": "workspace:*",
"@yamada-ui/cli": "workspace:*",
"@yamada-ui/dropzone": "workspace:*",
"@yamada-ui/fontawesome": "workspace:*",
"@yamada-ui/markdown": "workspace:*",
"@yamada-ui/nextjs": "workspace:*",
"@yamada-ui/react": "workspace:*",
"@yamada-ui/table": "workspace:*",
"@yamada-ui/test": "workspace:*",
"@yamada-ui/theme": "workspace:*",
"chalk": "^5.3.0",
"csstype": "^3.1.3",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.0.0",
"find-packages": "^10.0.4",
"glob": "^10.3.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"jsdom": "^23.0.1",
"lint-staged": "15.2.0",
"list-it": "^1.3.12",
"node-fetch": "^3.3.2",
"plop": "4.0.1",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-icons": "^4.12.0",
"rimraf": "5.0.5",
"storybook": "7.6.7",
"storybook-dark-mode": "^3.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsup": "8.0.1",
"tsx": "^4.6.2",
"turbo": "^1.10.16",
"typescript": "^5.3.2",
"vite": "^5.0.4"
},
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
}