-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "ethereal2",
"version": "2.2.0",
"description": "A beautiful, modern, and accessible UI library for React.",
"repository": "https://github.com/Fetch-Monitors/Ethereal2",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "NODE_ENV=production microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"storybook": "start-storybook -p 8008 --disable-telemetry",
"build-storybook": "build-storybook --no-dll -o docs-build",
"prepublish": "npm run build"
},
"author": "Maximilian Hollis",
"license": "MIT",
"dependencies": {
"framer-motion": "9.1.7",
"react-icons": "4.8.0",
"react-use": "17.4.0",
"react-virtualized": "9.22.3",
"react-window": "1.8.9"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/plugin-transform-react-jsx": "7.20.13",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack4": "6.5.16",
"@storybook/manager-webpack4": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.1.0",
"@types/node": "18.7.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"babel-loader": "8.3.0",
"babel-plugin-styled-components": "2.1.1",
"babel-preset-react-app": "10.0.1",
"cross-env": "7.0.3",
"eslint-config-lemon": "0.6.92",
"eslint-plugin-prettier": "4.2.1",
"microbundle": "0.15.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "5.3.10",
"themeprovider-storybook": "1.8.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5"
},
"resolutions": {
"styled-components": "5.3.10"
}
}