-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "duse-wepcomponents",
"version": "0.0.0",
"description": "두꺼비세상 웹 컴포넌트",
"keywords": [
"web components"
],
"homepage": "",
"bugs": {
"url": "",
"email": ""
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/web-components": "^7.5.3",
"@storybook/web-components-vite": "^7.5.3",
"autoprefixer": "^10.4.16",
"lit": "^3.0.2",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"storybook": "^7.6.6",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vite": "^5.0.0"
},
"dependencies": {
"@lit/react": "^1.0.2",
"vite-plugin-svgo": "^1.4.0"
}
}