-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
108 lines (108 loc) · 3.6 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
{
"name": "babelfish-rewrite",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp ./_redirects ./dist",
"deploy": "./start.sh",
"lint": "eslint .",
"prettier": "prettier --config .prettierrc --check .",
"prettier:fix": "prettier --config .prettierrc --write .",
"test": "jest --verbose",
"preview": "vite preview",
"check-types": "tsc --noEmit",
"check-all": "yarn test && yarn lint && yarn check-types && yarn prettier",
"generate-contracts-types": "typechain --target ethers-v5 --out-dir src/contracts/types './src/contracts/abi/*.json'",
"generate-gql-types": "graphql-codegen --config codegen.yml",
"postinstall": "yarn generate-contracts-types && yarn generate-gql-types"
},
"dependencies": {
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/gql-tag-operations-preset": "1.4.0",
"@graphql-codegen/typescript-graphql-request": "4.4.9",
"@graphql-typed-document-node/core": "3.1.1",
"@mui/material": "5.4.0",
"@reduxjs/toolkit": "1.7.2",
"@sovryn/ethers-provider": "1.0.0",
"@sovryn/onboard-common": "1.0.0",
"@sovryn/onboard-core": "1.0.1",
"@sovryn/onboard-hw-common": "1.0.1",
"@sovryn/onboard-injected": "1.0.0",
"@sovryn/onboard-ledger": "1.0.1",
"@sovryn/onboard-react": "1.0.3",
"@sovryn/onboard-trezor": "1.0.1",
"@sovryn/ui": "1.0.6",
"@typechain/ethers-v5": "9.0.0",
"buffer": "6.0.3",
"dayjs": "1.10.7",
"ethers": "5.5.4",
"ethers-multicall": "0.2.2",
"graphql": "16.3.0",
"graphql-request": "4.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.43.1",
"react-redux": "7.2.6",
"react-router-dom": "6.2.1",
"reactjs-localstorage": "1.0.1",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"rxjs": "7.8.1",
"subscription-client": "0.9.15",
"ts-node": "10.5.0",
"typed-redux-saga": "1.5.0",
"typescript-http-client": "0.10.4",
"web3": "1.9.0",
"web3-utils": "1.10.0"
},
"devDependencies": {
"@ethersproject/providers": "5.5.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.5.0",
"@graphql-codegen/typescript-operations": "2.4.1",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.4.0",
"@types/node": "17.0.17",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.17",
"@types/reactjs-localstorage": "1.0.0",
"@types/redux-mock-store": "1.0.3",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"@vitejs/plugin-react": "4.0.0",
"assert": "2.0.0",
"crypto-browserify": "3.12.0",
"eslint": "8.8.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"events": "3.3.0",
"jest": "27.5.1",
"jest-transform-stub": "2.0.0",
"prettier": "2.5.1",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.4",
"rollup-plugin-polyfill-node": "0.12.0",
"stream-browserify": "3.0.0",
"ts-jest": "27.1.3",
"typechain": "7.0.0",
"typescript": "4.5.4",
"vite": "4.3.5"
},
"overrides": {
"@types/react": "17.0.44"
},
"resolutions": {
"@types/react": "17.0.44"
},
"packageManager": "[email protected]"
}