-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.07 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
94
95
{
"name": "@operatiemobilisatie/ui",
"version": "0.10.0",
"description": "A collection of React components for OM websites and applications.",
"author": "@douwepausma",
"license": "MIT",
"scripts": {
"rollup": "npx rollup -c",
"rollup-watch": "npx rollup -cw",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir .storybook/static"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.0",
"@storybook/nextjs": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-webpack5": "^8.4.0",
"@storybook/test": "^8.4.0",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prop-types": "^15.8.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.4.0",
"storybook": "^8.4.0",
"tailwindcss": "^3.4.3"
},
"dependencies": {
"react-countup": "^6.5.3",
"react-select": ">=5.8.1",
"react-visibility-sensor": "^5.1.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/typography": ">=0.5.10",
"class-variance-authority": ">=0.7.0",
"classnames": ">=2.5.1",
"clsx": ">=2.1.1",
"tailwind-merge": ">=2.3.0",
"tailwindcss-animate": ">=1.0.7"
},
"peerDependencies": {
"next": ">=14.2.3",
"react": ">=18.0"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/src/index.js"
},
"./*": {
"types": "./dist/src/components/*.d.ts",
"default": "./dist/src/components/*.js"
},
"./lib/*": "./dist/src/lib/*.js",
"./tailwindcss": "./dist/tailwind.config.js",
"./css": "./dist/css/style.css"
},
"types": "./dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/operatiemobilisatie"
}
}