-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.23 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
{
"name": "@manifoldfinance/fold-dapp",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=development npx next build",
"start": "next start",
"lint": "next lint",
"type-check": "npx tsc --pretty --noEmit",
"format": "npx prettier --write \"**/*.tsx\" \"**/*.ts\"",
"analyze": "ANALYZE=true next build",
"compile-contract-types": "npx typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.4.0",
"@ethersproject/address": "5.4.0",
"@ethersproject/bignumber": "5.4.0",
"@ethersproject/contracts": "5.4.0",
"@ethersproject/properties": "5.5.0",
"@ethersproject/providers": "5.4.0",
"@ethersproject/transactions": "5.4.0",
"@ethersproject/units": "5.4.0",
"@ethersproject/web": "5.4.0",
"@headlessui/react": "^1.3.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/jazzicon": "^2.0.0",
"@metamask/onboarding": "^1.0.1",
"@radix-ui/react-slider": "^0.0.17",
"@walletconnect/ethereum-provider": "^1.6.5",
"classnames": "^2.3.1",
"dayjs": "^1.10.6",
"eth-rpc-errors": "^4.0.3",
"fathom-client": "^3.1.0",
"ismobilejs": "^1.1.1",
"jazzicon-ts": "^1.0.0",
"next": "^12.0.7",
"omit-ts": "^1.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-hot-toast": "^2.1.1",
"react-use": "^17.2.4",
"swr": "^1.0.0",
"zustand": "^3.6.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@ethersproject/abi": "5.4.0",
"@ethersproject/bytes": "5.4.0",
"@next/bundle-analyzer": "^11.1.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/classnames": "^2.3.1",
"@types/node": "^14",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.3.3",
"csstype": "^2.6.2",
"eip1193-provider": "^1.0.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "^8.3.0",
"ethers": "5.4.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"tailwindcss": "^2.2.8",
"typechain": "5.1.2",
"typescript": "^4.4.2"
}
}