-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "@sikka/hawa",
"version": "0.1.6-next",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/style.css": "./dist/index.css"
},
"files": [
"dist/**"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-lib": "tsup components/index.tsx --format cjs,esm --dts",
"build-css": "postcss styles/globals.css -o dist/index.css",
"prepublish": "npm run build-lib && npm run build-css",
"pub": "npm publish --tag next"
},
"dependencies": {
"@types/node": "20.8.0",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"next": "13.5.3",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.14.0",
"typescript": "5.2.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.5",
"@storybook/nextjs": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"autoprefixer": "^10.4.16",
"eslint-plugin-storybook": "^0.6.14",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"storybook": "^7.4.5",
"storybook-dark-mode": "^3.0.1",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"tsup": "^7.2.0"
}
}