-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
{
"name": "@fidlabs/common-react-ui",
"version": "0.0.0-semantically-released",
"description": "React components library for Filecoin applications",
"repository": {
"type": "git",
"url": "https://github.com/fidlabs/common-react-ui.git"
},
"scripts": {
"dev": "tsup --watch",
"format": "npx prettier --write .",
"prettier": "npx prettier --check .",
"lint": "eslint",
"test": "vitest",
"build": "tsup",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"./*.css": "./dist/*.css"
},
"author": "Neti",
"license": "ISC",
"peerDependencies": {
"react": "^18 || ^19"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-onboarding": "^8.5.2",
"@storybook/blocks": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/react-vite": "^8.5.2",
"@storybook/test": "^8.5.2",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"storybook": "^8.5.2",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"dependencies": {
"@hookform/resolvers": "^4.1.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.2"
}
}