-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.78 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
{
"name": "min-ui",
"version": "0.0.0",
"description": "React UI component library based on the Min design system",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"import": "./dist/*/index.es.js",
"require": "./dist/*/index.js",
"types": "./dist/*/index.d.ts"
},
"./styled": {
"import": "./dist/styled/index.es.js",
"require": "./dist/styled/index.js",
"types": "./dist/styled/index.d.ts"
},
"./setup/ThemeProvider": {
"import": "./dist/setup/ThemeProvider.es.js",
"require": "./dist/setup/ThemeProvider.js",
"types": "./dist/setup/ThemeProvider.d.ts"
}
},
"sideEffects": false,
"scripts": {
"build": "vite build",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{js,ts,tsx,json}\"",
"convention": "pnpm prettier && eslint --fix \"**/*.{js,ts,tsx}\"",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_100803badf6a994"
},
"keywords": [
"react",
"ui",
"component",
"library"
],
"author": {
"name": "kimjh96",
"email": "kimjhs@kakao.com"
},
"license": "MIT",
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.9",
"@storybook/addon-interactions": "^8.1.9",
"@storybook/addon-links": "^8.1.9",
"@storybook/blocks": "^8.1.9",
"@storybook/manager-api": "^8.1.9",
"@storybook/react": "^8.1.9",
"@storybook/react-vite": "^8.1.9",
"@storybook/theming": "^8.1.9",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"chromatic": "^11.5.6",
"csstype": "^3.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^11.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"storybook": "^8.1.9",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"lint-staged": {
"*.{js,ts,mts,tsx,json,mdx}": "prettier --write",
"*.{js,ts,mts,tsx}": "eslint --fix"
}
}