-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
85 lines (85 loc) · 2.22 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
{
"name": "joy-treasury",
"description": "A CLI to clone Joy UI blocks into your project.",
"author": "siriwatknp",
"version": "0.1.3",
"homepage": "https://siriwatknp.github.io/joy-treasury/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/siriwatknp/joy-treasury"
},
"main": "dist/index.js",
"type": "module",
"exports": "./dist/index.js",
"bin": "./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"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@types/got": "9.6.11",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.4",
"chalk": "4.1.0",
"cmdk": "0.2.0",
"commander": "7.1.0",
"cosmiconfig": "8.2.0",
"cpy": "8.1.1",
"got": "11.8.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",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@mui/joy": "5.0.0-beta.9",
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "7.2.3",
"@storybook/addon-mdx-gfm": "7.2.3",
"@storybook/addon-styling": "1.3.6",
"@storybook/addons": "7.2.3",
"@storybook/react": "7.2.3",
"@storybook/react-webpack5": "7.2.3",
"@types/jest": "29.5.3",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"babel-loader": "9.1.3",
"chromatic": "6.24.1",
"hygen": "6.2.11",
"jest": "29.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "7.2.3",
"storybook-dark-mode": "3.0.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"
}
}