-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.78 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
96
97
98
99
100
101
102
103
104
105
{
"name": "@real-wagmi/uikit",
"version": "1.4.0",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": [
"src/theme/**/*"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "vitest --run",
"build": "vite build",
"prepare": "yarn build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier --write \"*/**/*.(ts|js)\""
},
"author": "Wagmi",
"license": "MIT",
"devDependencies": {
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/blocks": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/react-vite": "^7.0.12",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "8.0.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.1.7",
"@types/rebass": "^4.0.7",
"@types/styled-components": "^5.1.25",
"@vanilla-extract/vite-plugin": "^3.9.0",
"@vitejs/plugin-react": "4.0.0",
"jest-environment-jsdom": "^29.3.1",
"jest-styled-components": "^7.0.8",
"polished": "^3.3.2",
"prop-types": "^15.8.1",
"react-dom": "^18.2.0",
"react-router-dom": "^5.2.0",
"storybook": "^7.0.12",
"themeprovider-storybook": "^1.7.2",
"typescript": "^5.2.2",
"vite": "4.3.9",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.27.2"
},
"dependencies": {
"@ethersproject/address": "5.7.0",
"@popperjs/core": "^2.11.8",
"@reach/portal": "^0.18.0",
"@real-wagmi/sdk": "1.4.0",
"@real-wagmi/v3-sdk": "1.4.0",
"@storybook/addon-themes": "^7.5.3",
"@types/styled-system": "^5.1.15",
"@types/uuid": "^9.0.7",
"framer-motion": "10.11.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-feather": "^2.0.8",
"react-popper": "^2.3.0",
"rebass": "^4.0.7",
"recharts": "^2.0.9",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5",
"swr": "^2.2.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"repository": "https://github.com/RealWagmi/uikit.git",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"wagmi",
"uikit"
]
}