forked from polarsource/polar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 4.33 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
{
"name": "polarkit",
"version": "0.0.4",
"private": true,
"exports": {
"./components/ui/accordion": "./src/components/ui/accordion.tsx",
"./components/ui/atoms": "./src/components/ui/atoms/index.ts",
"./components/ui/atoms/alert": "./src/components/ui/atoms/Alert.tsx",
"./components/ui/atoms/avatar": "./src/components/ui/atoms/Avatar.tsx",
"./components/ui/atoms/button": "./src/components/ui/atoms/Button.tsx",
"./components/ui/atoms/card": "./src/components/ui/atoms/Card.tsx",
"./components/ui/atoms/copytoclipboardinput": "./src/components/ui/atoms/CopyToClipboardInput.tsx",
"./components/ui/atoms/countrypicker": "./src/components/ui/atoms/CountryPicker.tsx",
"./components/ui/atoms/countrystatepicker": "./src/components/ui/atoms/CountryStatePicker.tsx",
"./components/ui/atoms/datatable": "./src/components/ui/atoms/datatable/index.ts",
"./components/ui/atoms/input": "./src/components/ui/atoms/Input.tsx",
"./components/ui/atoms/list": "./src/components/ui/atoms/List.tsx",
"./components/ui/atoms/moneyinput": "./src/components/ui/atoms/MoneyInput.tsx",
"./components/ui/atoms/select": "./src/components/ui/atoms/Select.tsx",
"./components/ui/atoms/shadowbox": "./src/components/ui/atoms/ShadowBox.tsx",
"./components/ui/atoms/switch": "./src/components/ui/atoms/Switch.tsx",
"./components/ui/atoms/tabs": "./src/components/ui/atoms/Tabs.tsx",
"./components/ui/atoms/textarea": "./src/components/ui/atoms/TextArea.tsx",
"./components/ui/calendar": "./src/components/ui/calendar.tsx",
"./components/ui/alert-dialog": "./src/components/ui/alert-dialog.tsx",
"./components/ui/card": "./src/components/ui/card.tsx",
"./components/ui/checkbox": "./src/components/ui/checkbox.tsx",
"./components/ui/dropdown-menu": "./src/components/ui/dropdown-menu.tsx",
"./components/ui/form": "./src/components/ui/form.tsx",
"./components/ui/input": "./src/components/ui/input.tsx",
"./components/ui/label": "./src/components/ui/label.tsx",
"./components/ui/molecules": "./src/components/ui/molecules/index.ts",
"./components/ui/popover": "./src/components/ui/popover.tsx",
"./components/ui/radio-group": "./src/components/ui/radio-group.tsx",
"./components/ui/separator": "./src/components/ui/separator.tsx",
"./components/ui/skeleton": "./src/components/ui/skeleton.tsx",
"./components/ui/table": "./src/components/ui/table.tsx",
"./components/ui/textarea": "./src/components/ui/textarea.tsx",
"./components/ui/tooltip": "./src/components/ui/tooltip.tsx",
"./components/ui/toggle": "./src/components/ui/toggle.tsx",
"./components/ui/toggle-group": "./src/components/ui/toggle-group.tsx",
"./lib/money": "./src/lib/money.ts",
"./package.json": "./package.json"
},
"scripts": {
"lint": "TIMING=1 eslint \"**/*.ts*\""
},
"dependencies": {
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@polar-sh/sdk": "workspace:*",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.20.5",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"countries-list": "^3.1.1",
"lucide-react": "^0.272.0",
"react": "^18.2.0",
"react-day-picker": "^8.9.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"react-timeago": "^7.1.0",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@storybook/react": "^8.0.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-timeago": "^4.1.3",
"eslint": "^8.55.0",
"eslint-config-custom": "workspace:*",
"eslint-plugin-polar-rules": "workspace:^",
"tsconfig": "workspace:*",
"typescript": "5.3.3"
}
}