-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
{
"name": "@spiffdog/spiffy-components",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"dev:vite": "vite",
"build": "vite build",
"build-storybook": "storybook build",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"preview": "vite preview"
},
"peerDependencies ": {
"@radix-ui/react-dialog": ">=1.0.0",
"@radix-ui/react-dropdown-menu": ">=2.0.0",
"@radix-ui/react-popover": ">=1.0.0",
"@radix-ui/react-select": ">=2.0.0",
"@spiffdog/spiffy-colors": "^2.0.1",
"@spiffdog/spiffy-hooks": "^0.0.11",
"@spiffdog/spiffy-tools": ">=0.3.0",
"match-sorter": ">=8.0.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@spiffdog/spiffy-tools": "^0.3.0",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-links": "^9.0.16",
"@storybook/react-vite": "^9.0.16",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^9.0.16",
"globals": "^15.12.0",
"match-sorter": "^8.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"storybook": "^9.1.17",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^7.2.7"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}