-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "with-typescript-eslint-jest",
"author": "@agctyz",
"license": "MIT",
"version": "1.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint src --fix",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"contracts": "typechain --target ethers-v5 --out-dir src/abi/types \"./src/abi/**/*.json\""
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.0.4",
"@headlessui/react": "^1.5.0",
"@walletconnect/ethereum-provider": "^1.7.5",
"@web3-react/coinbase-wallet": "8.0.23-beta.0",
"@web3-react/core": "8.0.20-beta.0",
"@web3-react/metamask": "8.0.16-beta.0",
"@web3-react/network": "8.0.15-beta.0",
"@web3-react/types": "8.0.10-beta.0",
"@web3-react/url": "8.0.14-beta.0",
"@web3-react/walletconnect": "8.0.23-beta.0",
"ethers": "^5.5.4",
"next": "12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.9",
"swr": "^1.2.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@typechain/ethers-v5": "^9.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.0.6",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
}
}