-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.53 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
{
"name": "zootoken-website",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "yarn build:next && yarn build:sitemap",
"now-build": "yarn build && yarn build:delete-sourcemaps",
"build:next": "next build",
"build:delete-sourcemaps": "yarn ts-node --project scripts/tsconfig.json scripts/delete-sourcemaps",
"build:sitemap": "yarn ts-node --project scripts/tsconfig.json scripts/generate-sitemap.ts",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"export": "echo 'skipping'",
"prettier": "prettier --write \"**/*.{ts,tsx,js,json,css,yml,md}\"",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,js,json,css,yml,md}\"",
"lint": "eslint --ext .tsx,.ts .",
"typecheck": "tsc --noEmit",
"postexport": "yarn build:sitemap",
"generate:typechain": "typechain --target ethers-v5 --outDir ./tmp './artifacts/*.json'"
},
"dependencies": {
"@0xsequence/multicall": "^0.11.4",
"@alch/alchemy-web3": "^1.0.2",
"@ethersproject/abi": "^5.0.1",
"@ethersproject/bignumber": "^5.0.15",
"@ethersproject/bytes": "^5.0.2",
"@ethersproject/contracts": "^5.0.1",
"@ethersproject/providers": "^5.0.4",
"@typechain/ethers-v5": "^6.0.5",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/types": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.1.6",
"@web3-react/walletlink-connector": "^6.1.6",
"date-fns": "^2.14.0",
"decimal.js-light": "^2.5.0",
"ethereumjs-util": "^7.0.2",
"lodash": "^4.17.19",
"next": "^10.1.3",
"next-seo": "^4.7.2",
"polished": "^4.1.1",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-countdown": "^2.3.1",
"react-dom": "^17.0.2",
"react-media": "^2.0.0-rc.1",
"react-medium-image-zoom": "^4.3.1",
"react-spring": "^9.0.0-beta.34",
"react-table": "^7.2.2",
"react-use": "^17.2.3",
"recharts": "^2.0.8",
"styled-components": "^5.1.1",
"swr": "^0.5.5",
"typechain": "^4.0.3"
},
"devDependencies": {
"@0x/types": "^3.2.0",
"@babel/helper-regex": "^7.10.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/lodash-es": "^4.17.3",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-table": "^7.0.19",
"@types/shelljs": "^0.8.8",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"@zeit/next-source-maps": "^0.0.4-canary.1",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "7.24.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "5.7.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"jest": "^26.1.0",
"jest-transform-stub": "^2.0.0",
"next-fonts": "^1.4.0",
"next-optimized-images": "^2.6.1",
"prettier": "^2.0.5",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webp-loader": "^0.6.0"
},
"husky": {
"hooks": {
"pre-push": "yarn typecheck && yarn lint && yarn lint:prettier && yarn test"
}
}
}