-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "@yas/ui",
"version": "0.0.0",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"dev": "tsc --build --watch --preserveWatchOutput",
"lint": "pnpm assert-storybook-convention",
"test": "vitest run"
},
"dependencies": {
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-context-menu": "2.1.5",
"@yas/icons": "workspace:*",
"@yas/style": "workspace:*",
"@yas/validate": "workspace:*",
"@yas/hooks": "workspace:*",
"@yas/time": "workspace:*",
"@yas/router": "workspace:*",
"@hookform/resolvers": "3.3.4",
"react-day-picker": "8.10.0",
"react-hook-form": "7.49.3",
"react-async-modal-hook": "^0.0.16",
"react-error-boundary": "4.0.13",
"react-styled-factory": "^0.0.10",
"hookform-controller-proxy": "^0.0.21"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@yas/design-tokens": "workspace:*",
"@yas/build": "workspace:*",
"@yas/scripts": "workspace:*",
"@yas/test": "workspace:*",
"@yas/tsconfig": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}