-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 3.65 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
{
"name": "nimi-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.10",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@hookform/resolvers": "^2.8.10",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.29",
"@types/react": "^18.0.7",
"@types/react-dom": "^18.0.0",
"@walletconnect/types": "^1.7.8",
"@walletconnect/web3-provider": "^1.7.8",
"@web3-react/coinbase-wallet": "8.0.31-beta.0",
"@web3-react/core": "8.0.29-beta.0",
"@web3-react/eip1193": "8.0.23-beta.0",
"@web3-react/empty": "8.0.17-beta.0",
"@web3-react/gnosis-safe": "8.0.3-beta.0",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/metamask": "8.0.24-beta.0",
"@web3-react/network": "8.0.23-beta.0",
"@web3-react/types": "8.0.17-beta.0",
"@web3-react/url": "8.0.22-beta.0",
"@web3-react/walletconnect": "8.0.31-beta.0",
"axios": "^0.27.2",
"cids": "^1.1.9",
"content-hash": "^2.5.2",
"csstype": "^3.1.0",
"ethers": "^5.6.4",
"graphql": "^15.8.0",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-xhr-backend": "^3.2.2",
"multicodec": "^3.2.1",
"nimi-card": "^0.5.0-beta.3",
"polished": "^4.2.2",
"react": "^18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-frame-component": "^5.2.3",
"react-hook-form": "^7.30.0",
"react-i18next": "^11.16.7",
"react-loading-skeleton": "^3.1.0",
"react-modal": "^3.15.1",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "^4.0.3",
"react-toastify": "^8.2.0",
"rebass": "^4.0.7",
"styled-components": "^5.3.5",
"typechain": "^8.0.0",
"typescript": "^4.6.3",
"util": "^0.12.4",
"walletlink": "^2.5.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"lint": "eslint \"./src/**/*.{ts,tsx,js}\"",
"lint:fix": "npm run lint -- --fix",
"contracts:codegen": "typechain --target ethers-v5 --out-dir src/generated/contracts './src/abis/*.json'",
"build:analyze": "cross-env REACT_APP_ANALYZE_BUNDLE=true yarn craco build && yarn writeVersion",
"ipfs:build": "cross-env PUBLIC_URL=\".\" yarn build",
"ipfs:publish": "ipfs-deploy build -p infura -O",
"postinstall": "npm run contracts:codegen && npm run graphql:codegen",
"graphql:codegen": "graphql-codegen --config graphql-codegen.yml"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"yarn": "use npm!"
},
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@graphql-codegen/typescript-react-apollo": "3.2.14",
"@graphql-codegen/typescript-rtk-query": "^2.2.12",
"@typechain/ethers-v5": "^10.0.0",
"@types/rebass": "^4.0.10",
"@types/styled-components": "^5.1.25",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
}
}