-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.85 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
{
"name": "@koupr/ui",
"version": "1.14.3",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/kouprlabs/koupr-ui.git"
},
"scripts": {
"build": "rollup -c && bun ./scripts/post-build.ts",
"tsc": "tsc",
"format": "prettier --write .",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"clean": "rimraf ./dist ./storybook-static",
"storybook": "rollup -c && bun ./scripts/post-build.ts && storybook dev -p 6006 --ci",
"build-storybook": "rollup -c && bun ./scripts/post-build.ts && storybook build"
},
"dependencies": {
"@chakra-ui/react": "2.10.3",
"@chakra-ui/theme-tools": "2.2.6",
"@emotion/css": "11.13.4",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource-variable/material-symbols-rounded": "5.1.3",
"@fontsource-variable/unbounded": "5.1.1",
"@fontsource/ibm-plex-sans": "5.1.0",
"chakra-react-select": "5.0.2",
"classnames": "2.5.1",
"framer-motion": "11.11.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.27.0"
},
"peerDependencies": {
"@chakra-ui/react": ">= 2.10.3 < 3.0.0",
"@chakra-ui/theme-tools": ">= 2.2.6 < 3.0.0",
"@emotion/css": ">= 11.13.4 < 12.0.0",
"@emotion/react": ">= 11.13.3 < 12.0.0",
"@emotion/styled": ">= 11.13.0 < 12.0.0",
"chakra-react-select": ">= 5.0.2 < 6.0.0",
"classnames": ">= 2.5.1 < 3.0.0",
"framer-motion": ">= 11.11.11 < 12.0.0",
"react": ">= 18.3.1 < 19.0.0",
"react-dom": ">= 18.3.1 < 19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-strip": "3.0.4",
"@rollup/plugin-typescript": "12.1.1",
"@rollup/pluginutils": "5.1.3",
"@storybook/addon-controls": "8.4.1",
"@storybook/addon-essentials": "8.4.1",
"@storybook/react": "8.4.1",
"@storybook/react-vite": "8.4.1",
"@storybook/test": "8.4.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-storybook": "0.11.0",
"globals": "15.12.0",
"postcss": "8.4.47",
"postcss-import": "16.1.0",
"postcss-import-url": "7.2.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.24.4",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-svg": "2.0.0",
"storybook": "8.4.1",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vite": "5.4.10"
}
}