-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.3 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.3 KB
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
{
"name": "junyeol-components",
"version": "2.0.16",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"engines": {
"node": ">=24.x"
},
"repository": "https://github.com/ryu9663/junyeol-components.git",
"author": "junyeol <ryu9663@naver.com>",
"homepage": "https://junyeol-components.vercel.app/",
"scripts": {
"dev": "storybook dev -p 7007",
"clean:build": "rm -rf dist",
"build:lib": "tsc && vite build",
"build:storybook": "storybook build -o dist && touch ./dist/.nojekyll",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:style": "stylelint --fix '**/*.scss'",
"lint:style:fix": "stylelint --fix '**/*.scss' --fix",
"preview": "vite preview",
"start-react": "vite",
"test": "vitest"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@mui/x-date-pickers": "^7.25.0",
"date-fns": "^3.6.0",
"jest-dom": "^4.0.0",
"material-react-table": "^3.1.0",
"react": "^18.2.0",
"react-calendar": "^5.0.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.54.2",
"react-node-to-string": "^0.1.2",
"react-select": "^5.10.0",
"zustand": "^4.4.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/testing-library": "^0.2.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.6.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/rollup-plugin-generate-package-json": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"esbuild": "^0.19.2",
"esbuild-css-modules-plugin": "^3.0.1",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"path": "^0.12.7",
"prettier": "^3.8.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"sass": "^1.66.1",
"storybook": "^7.6.17",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"typescript": "^5.0.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.5.4",
"vite-plugin-static-copy": "^0.17.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}