-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) 路 3.94 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) 路 3.94 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
{
"name": "@plane/propel",
"version": "1.4.0",
"private": true,
"license": "AGPL-3.0",
"type": "module",
"exports": {
"./accordion": "./dist/accordion/index.js",
"./animated-counter": "./dist/animated-counter/index.js",
"./avatar": "./dist/avatar/index.js",
"./badge": "./dist/badge/index.js",
"./banner": "./dist/banner/index.js",
"./button": "./dist/button/index.js",
"./calendar": "./dist/calendar/index.js",
"./card": "./dist/card/index.js",
"./charts/area-chart": "./dist/charts/area-chart/index.js",
"./charts/bar-chart": "./dist/charts/bar-chart/index.js",
"./charts/line-chart": "./dist/charts/line-chart/index.js",
"./charts/pie-chart": "./dist/charts/pie-chart/index.js",
"./charts/radar-chart": "./dist/charts/radar-chart/index.js",
"./charts/scatter-chart": "./dist/charts/scatter-chart/index.js",
"./charts/tree-map": "./dist/charts/tree-map/index.js",
"./collapsible": "./dist/collapsible/index.js",
"./combobox": "./dist/combobox/index.js",
"./command": "./dist/command/index.js",
"./context-menu": "./dist/context-menu/index.js",
"./dialog": "./dist/dialog/index.js",
"./emoji-icon-picker": "./dist/emoji-icon-picker/index.js",
"./emoji-reaction": "./dist/emoji-reaction/index.js",
"./empty-state": "./dist/empty-state/index.js",
"./icon-button": "./dist/icon-button/index.js",
"./icons": "./dist/icons/index.js",
"./input": "./dist/input/index.js",
"./menu": "./dist/menu/index.js",
"./pill": "./dist/pill/index.js",
"./popover": "./dist/popover/index.js",
"./portal": "./dist/portal/index.js",
"./scrollarea": "./dist/scrollarea/index.js",
"./skeleton": "./dist/skeleton/index.js",
"./switch": "./dist/switch/index.js",
"./tab-navigation": "./dist/tab-navigation/index.js",
"./table": "./dist/table/index.js",
"./tabs": "./dist/tabs/index.js",
"./toast": "./dist/toast/index.js",
"./toolbar": "./dist/toolbar/index.js",
"./tooltip": "./dist/tooltip/index.js",
"./utils": "./dist/utils/index.js",
"./package.json": "./package.json",
"./styles/react-day-picker.css": "./dist/styles/react-day-picker.css",
"./styles/react-day-picker": "./dist/styles/react-day-picker.css"
},
"scripts": {
"dev": "tsdown --watch --no-clean",
"build": "tsdown",
"check:lint": "oxlint --max-warnings=3605 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-story": "node scripts/generate-story.mjs",
"audit-stories": "node scripts/audit.mjs",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@base-ui-components/react": "catalog:",
"@plane/constants": "workspace:*",
"@plane/hooks": "workspace:*",
"@plane/types": "workspace:*",
"@plane/utils": "workspace:*",
"@tanstack/react-table": "catalog:",
"class-variance-authority": "catalog:",
"clsx": "catalog:",
"cmdk": "catalog:",
"framer-motion": "catalog:",
"frimousse": "catalog:",
"lucide-react": "catalog:",
"react": "catalog:",
"react-day-picker": "catalog:",
"react-dom": "catalog:",
"recharts": "catalog:",
"tailwind-merge": "catalog:",
"use-font-face-observer": "catalog:"
},
"devDependencies": {
"@plane/tailwind-config": "workspace:*",
"@plane/typescript-config": "workspace:*",
"@storybook/addon-designs": "catalog:",
"@storybook/addon-docs": "catalog:",
"@storybook/addon-vitest": "10.4.6",
"@storybook/react-vite": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitest/browser-playwright": "4.1.8",
"playwright": "^1.62.1",
"storybook": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "4.1.8"
}
}