-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 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
{
"name": "applejelly",
"version": "0.1.3",
"description": "A React library for creating UI components",
"keywords": [
"ui",
"component",
"react",
"appearance"
],
"repository": "https://github.com/spookyjelly/applejelly.git",
"type": "module",
"author": "SpookyJelly",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"prebuild": "tsc",
"build": "vite build --config vite.config.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"gen": "plop --plopfile ./gen/plop.js"
},
"dependencies": {
"@floating-ui/react": "^0.26.20",
"@tanstack/react-virtual": "^3.9.0",
"case": "^1.6.3",
"copy-to-clipboard": "^3.3.3",
"d3-color": "^3.1.0",
"date-fns": "^4.1.0",
"downshift": "^9.0.8",
"mousetrap": "^1.6.5",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-compare": "^3.2.2",
"react-highlight-words": "^0.20.0",
"rollup-plugin-postcss": "^4.0.2",
"sb-addon-permutation-table": "^1.0.3",
"store2": "^2.14.4",
"storybook": "^8.5.2",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vitest": "^3.0.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.0",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.5.2",
"@storybook/react-vite": "^8.5.2",
"@storybook/test": "^8.5.2",
"@types/ramda": "^0.30.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-highlight-words": "^0.20.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"classnames": "^2.5.1",
"detect-browser": "^5.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"npm-run-all": "^4.1.5",
"vite": "^5.4.14"
}
}