-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathpackage.json
113 lines (113 loc) · 3.05 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
{
"name": "mui-treasury",
"description": "A CLI to clone Material UI blocks into your project.",
"author": {
"name": "siriwatknp"
},
"version": "0.3.0",
"homepage": "https://siriwatknp.github.io/mui-treasury/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siriwatknp/mui-treasury.git"
},
"bugs": {
"url": "https://github.com/siriwatknp/mui-treasury/issues"
},
"main": "dist/index.js",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"mui-treasury": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "jest",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"new-block": "cd .hygen && hygen block new",
"new-hook": "cd .hygen && hygen block hook"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@mdx-js/react": "3.0.1",
"@types/got": "9.6.11",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.4",
"chalk": "4.1.0",
"cmdk": "0.2.0",
"commander": "11.1.0",
"cosmiconfig": "8.2.0",
"cpy": "9.0.0",
"got": "11.8.2",
"prompts": "2.4.2",
"react-dropzone": "^14.2.3",
"react-ga4": "2.1.0",
"rimraf": "3.0.2",
"tar": "6.1.0",
"update-check": "1.5.4"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@chromatic-com/storybook": "^1",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@fontsource/roboto": "5.0.8",
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@mui/icons-material": "6.0.2",
"@mui/material": "6.0.2",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-mdx-gfm": "^8.0.9",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@testing-library/jest-dom": "6.1.6",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/color": "3.0.6",
"@types/jest": "29.5.3",
"@types/prompts": "2.4.9",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.16",
"babel-loader": "9.1.3",
"chromatic": "11.3.0",
"color": "4.2.3",
"css-loader": "6.9.0",
"formik": "2.4.5",
"hygen": "6.2.11",
"jest": "29.6.1",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.33",
"postcss-loader": "7.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "^8.0.9",
"storybook-dark-mode": "^4.0.1",
"style-loader": "3.3.4",
"stylis-plugin-rtl": "2.1.1",
"tailwindcss": "3.4.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslib": "2.6.0",
"tsup": "7.1.0",
"typescript": "5.1.6",
"usehooks-ts": "2.9.1",
"yup": "1.3.3"
}
}