-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
134 lines (134 loc) · 4.62 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
128
129
130
131
132
133
134
{
"name": "aelin",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"dev:prod": "NEXT_PUBLIC_REACT_APP_DEFAULT_CHAIN_ID=10 NEXT_PUBLIC_APP_ENV=production next dev",
"lint": "next lint",
"lint:fix": "eslint --fix \"./**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"typechain": "typechain --target=ethers-v5 ./src/abis/**/*.json --out-dir ./types/typechain/",
"schema": "bash scripts/apollo-schema.sh",
"sdk": "graphql-codegen --config codegen.js",
"postinstall": "yarn typechain && yarn sdk",
"create:csv": "node --experimental-json-modules --loader ts-node/esm scripts/generate-csv-for-merkle-tree.ts",
"create:nft:metadata": "node --experimental-json-modules --loader ts-node/esm scripts/generate-nft-metadata.ts"
},
"dependencies": {
"@eth-optimism/sdk": "^1.1.8",
"@ethersproject/abi": "^5.6.4",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "5.6.0",
"@ethersproject/bignumber": "5.4.1",
"@ethersproject/constants": "^5.6.0",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "5.4.5",
"@ethersproject/solidity": "^5.7.0",
"@ethersproject/strings": "^5.6.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/units": "5.4.0",
"@ethersproject/wallet": "^5.7.0",
"@metamask/detect-provider": "^1.2.0",
"@openzeppelin/merkle-tree": "^1.0.4",
"@synthetixio/contracts-interface": "^2.67.0-alpha",
"@synthetixio/wei": "^2.63.1",
"@visx/curve": "2.1.0",
"@visx/gradient": "2.10.0",
"@visx/responsive": "2.10.0",
"@visx/scale": "2.2.2",
"@visx/shape": "2.10.0",
"@web3-onboard/coinbase": "^2.2.4",
"@web3-onboard/core": "^2.20.4",
"@web3-onboard/gnosis": "^2.1.10",
"@web3-onboard/injected-wallets": "^2.10.2",
"@web3-onboard/ledger": "^2.5.1",
"@web3-onboard/react": "^2.8.9",
"@web3-onboard/trezor": "^2.4.2",
"@web3-onboard/walletconnect": "^2.4.1",
"alchemy-sdk": "^2.8.2",
"big-number-input": "^1.0.3",
"date-fns": "^2.28.0",
"envalid": "^7.3.1",
"eslint-config-next": "^13.3.0",
"ethereumjs-util": "^7.1.5",
"fuse.js": "^6.6.2",
"graphql": "^16.3.0",
"graphql-request": "4.0.0",
"graphql-tag": "2.12.6",
"is-ipfs": "^7.0.3",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"next": "^13.3.0",
"nullthrows": "^1.1.1",
"papaparse": "^5.3.2",
"polished": "^4.1.4",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-papaparse": "^4.0.2",
"react-tooltip": "^4.2.21",
"sanitize.css": "^13.0.0",
"styled-components": "^5.3.3",
"swr": "^1.3.0",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.7",
"@graphql-codegen/typescript-graphql-request": "4.4.3",
"@graphql-codegen/typescript-operations": "2.3.4",
"@graphql-codegen/typescript-react-apollo": "3.2.10",
"@typechain/ethers-v5": "^9.0.0",
"@types/cheerio": "^0.22.31",
"@types/date-fns": "^2.6.0",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.180",
"@types/ms": "^0.7.31",
"@types/puppeteer": "^5.4.6",
"@types/react": "^18.0.37",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.1",
"eslint": "^8.10.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"graphql-codegen-plugin-typescript-swr": "0.8.1",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.3.1",
"json-2-csv": "^3.17.2",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"puppeteer": "^15.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.2",
"typechain": "^7.0.1",
"typescript": "4.6.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write",
"bash -c tsc"
]
}
}