-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.28 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@bitglaze/glaze-ui",
"repository": {
"type": "git",
"url": "https://github.com/bitglaze/glaze-ui.git"
},
"version": "0.2.7",
"main": "build/index.js",
"module": "build/index.es.js",
"typings": "build/index.d.ts",
"files": [
"build"
],
"license": "MIT",
"author": "Bitglaze Technologies Pvt Ltd",
"engines": {
"node": ">=18.x",
"yarn": ">=1.22.17",
"npm": "please-use-yarn"
},
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"prepare": "husky install",
"prettier": "prettier --write .",
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,mdx,html,json,css}": [
"prettier --write"
]
},
"resolutions": {
"@storybook/react-docgen-typescript-plugin": "npm:[email protected]"
},
"dependencies": {
"@heroicons/react": "^2.0.17",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-progress": "^1.0.2",
"@radix-ui/react-slider": "^1.1.1",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.1.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"class-variance-authority": "^0.5.1",
"clipboard-copy": "^4.0.1",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"heroicons": "^2.0.17",
"lucide-react": "^0.130.1",
"next": "13.1.6",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-select": "^5.7.2",
"rollup": "^3.20.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@storybook/addon-essentials": "^7.0.0-beta.41",
"@storybook/addon-interactions": "^7.0.0-beta.41",
"@storybook/addon-links": "^7.0.0-beta.41",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/blocks": "^7.0.0-beta.41",
"@storybook/manager-api": "^7.0.2",
"@storybook/nextjs": "^7.0.0-beta.41",
"@storybook/react": "^7.0.0-beta.41",
"@storybook/testing-library": "^0.0.14-next.1",
"@storybook/theming": "^7.0.2",
"autoprefixer": "^10.4.14",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"storybook": "^7.0.0-beta.41",
"storybook-dark-mode": "^2.0.5",
"storybook-tailwind-dark-mode": "^1.0.22",
"tailwindcss": "^3.3.1"
}
}