-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.85 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
{
"name": "@reactleaf/input",
"version": "1.0.0-beta.2",
"description": "Variable React Input components",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/exports/basic.js",
"./hookform": "./dist/exports/basic-hf.js",
"./calendar": "./dist/exports/calendar.js",
"./calendar/hookform": "./dist/exports/calendar-hf.js",
"./dropdown": "./dist/exports/dropdown.js",
"./dropdown/hookform": "./dist/exports/dropdown-hf.js",
"./style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactleaf/input.git"
},
"author": {
"name": "양현석",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@reactleaf/theme": "2.0.2",
"classnames": "^2.3.2",
"date-fns": "^3.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@chromatic-com/storybook": "^1",
"@storybook/addon-essentials": "^8.2.2",
"@storybook/addon-interactions": "^8.2.2",
"@storybook/addon-links": "^8.2.2",
"@storybook/addon-mdx-gfm": "^8.2.2",
"@storybook/addon-webpack5-compiler-swc": "^1.0.4",
"@storybook/blocks": "^8.2.2",
"@storybook/react": "^8.2.2",
"@storybook/react-webpack5": "^8.2.2",
"@storybook/test": "^8.2.2",
"@types/color": "^3.0.3",
"@types/react": "^18.2.14",
"@types/react-datepicker": "^6.0.0",
"@types/styled-components": "^5.1.26",
"chromatic": "^6.17.3",
"esbuild": "^0.19.2",
"eslint": "^8.38.0",
"install-peers-cli": "^2.2.0",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"react-hook-form": "^7.47.0",
"storybook": "^8.2.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.4"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rm -rf dist && pnpm run build:types && pnpm run build:common",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"build:common": "node esbuild.mjs",
"chromatic": "chromatic --project-token=baa9a92dee01 --auto-accept-changes",
"prepublishOnly": "npm run build"
},
"bugs": {
"url": "https://github.com/reactleaf/input/issues"
},
"homepage": "https://github.com/reactleaf/input#readme",
"peerDependencies": {
"react": "^18",
"react-datepicker": "^6.1.0",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-select": "^5.8.0"
},
"peerDependenciesMeta": {
"react-datepicker": {
"optional": true
},
"react-hook-form": {
"optional": true
},
"react-select": {
"optional": true
}
},
"packageManager": "[email protected]+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394"
}