-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
127 lines (127 loc) · 3.77 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": "pnyx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"storybook": "NODE_PATH=$(pwd)/node_modules start-storybook --port 6007",
"build-storybook": "NODE_PATH=$(pwd)/node_modules build-storybook",
"preview-storybook": "http-server storybook-static --port 6007 --silent"
},
"dependencies": {
"v3-governance": "1.0.7",
"@walletconnect/ethereum-provider": "^2.9.0",
"@walletconnect/modal": "^2.5.9",
"@walletconnect/types": "^2.6.0",
"@walletconnect/web3-provider": "^1.8.0",
"bignumber.js": "^9.1.1",
"connected-react-router": "^6.9.3",
"ethereumjs-abi": "^0.6.8",
"ethers": "^5.7.2",
"history": "^4.10.1",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"react": "18.2.0",
"react-collapse": "^5.1.1",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.6",
"react-number-format": "^4.9.4",
"react-redux": "^8.0.5",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-toastify": "^9.1.2",
"redux": "^4.2.1",
"redux-actions": "^3.0.0",
"redux-devtools-extension": "^2.13.9",
"reflect-metadata": "^0.1.13",
"rehype-raw": "^6.1.1",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"reselect": "^4.1.7",
"styled-components": "^5.3.9",
"walletlink": "^2.1.3",
"web3-provider-engine": "^16.0.5"
},
"devDependencies": {
"@storybook/addon-actions": "^7.0.2",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/builder-vite": "^7.0.2",
"@storybook/cli": "^7.0.2",
"@storybook/node-logger": "^7.0.2",
"@storybook/react": "^7.0.2",
"@types/bignumber.js": "^5.0.0",
"@types/history": "^4.7.11",
"@types/lodash": "^4.14.192",
"@types/luxon": "^3.3.0",
"@types/node": "^18.15.11",
"@types/react": "18.0.33",
"@types/react-collapse": "^5.0.1",
"@types/react-dom": "^18.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/redux": "^3.6.31",
"@types/redux-actions": "^2.6.2",
"@types/styled-components": "^5.1.26",
"@types/web3-provider-engine": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"node-stdlib-browser": "^1.2.0",
"prettier": "^2.8.7",
"typescript": "^5.0.3",
"vite": "^4.2.0",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vite-plugin-svgr": "^2.4.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@chainlink/[email protected]": "patches/@[email protected]"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}