-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
127 lines (127 loc) · 3.5 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@pooltogether/wallet-connection",
"author": "PoolTogether Inc.",
"description": "PoolTogether wallet connection logic, UI elements and utility hooks for sending and managing transactions.",
"version": "1.1.0",
"license": "MIT",
"typings": "dist/index.d.ts",
"type": "module",
"module": "dist/wallet-connection.esm.js",
"exports": "./dist/wallet-connection.esm.js",
"files": [
"dist",
"src"
],
"keywords": [
"react",
"library",
"components",
"web3",
"ethers",
"ethereum"
],
"engines": {
"node": ">=16"
},
"scripts": {
"reinstall": "rm -rf ./node_modules && yarn",
"start": "tsdx watch --format esm --onSuccess \"yalc push\" ",
"build": "tsdx build --format esm",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint --fix",
"prepare": "tsdx build --format esm",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/wallet-connection.cjs.production.min.js",
"limit": "150 KB"
},
{
"path": "dist/wallet-connection.esm.js",
"limit": "105 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.4",
"@pooltogether/etherplex": "^1.1.2",
"@pooltogether/react-components": "^2.0.0-beta.13",
"@pooltogether/utilities": "^0.6.2",
"@rainbow-me/rainbowkit": "0.12.15",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.4.19",
"@storybook/react": "^6.4.19",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^9.0.0",
"@wagmi/chains": "1.3.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"beautiful-react-hooks": "^3.6.2",
"classnames": "^2.3.1",
"eth-revert-reason": "^1.0.3",
"ethers": "5.7.0",
"feather-icons-react": "^0.4.1",
"framer-motion": "^7.3.5",
"graphql": "^16.1.0",
"graphql-request": "^3.7.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"jotai": "^1.4.3",
"postcss": "^8.3.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^17.0.2",
"react-query": "^3.16.0",
"react-spring-bottom-sheet": "^3.4.0",
"react-toastify": "^8.2.0",
"size-limit": "^7.0.8",
"tailwindcss": "^2.2.7",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "4",
"uuid": "^9.0.0",
"wagmi": "0.9.0"
},
"peerDependencies": {
"@pooltogether/etherplex": "^1.1.2",
"@pooltogether/react-components": "^2.0.0-beta.13",
"@pooltogether/utilities": "^0.6.2",
"@rainbow-me/rainbowkit": "0.12.15",
"@wagmi/chains": "1.3.0",
"beautiful-react-hooks": "^3.6.2",
"classnames": "^2.3.1",
"eth-revert-reason": "^1.0.3",
"ethers": "5.7.0",
"feather-icons-react": "^0.4.1",
"framer-motion": "^7.3.5",
"graphql": "^16.1.0",
"graphql-request": "^3.7.0",
"graphql-tag": "^2.12.6",
"jotai": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.16.0",
"react-spring-bottom-sheet": "^3.4.0",
"react-toastify": "^8.2.0",
"tailwindcss": "^2.2.7",
"uuid": "^9.0.0",
"wagmi": "0.12.17"
},
"dependencies": {
"@download/blockies": "^1.0.3"
}
}