forked from m1guelpf/wagmipet-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "wagmigotchi-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"format:fix": "prettier --write \"**/*.{ts,js}\"",
"postinstall": "yarn run generate-types",
"generate-types": "typechain --target=ethers-v5 --out-dir src/contracts 'src/abi/*.json'"
},
"dependencies": {
"@biconomy/mexa": "^2.0.19",
"@magic-ext/oauth": "^0.9.0",
"@walletconnect/web3-provider": "^1.6.5",
"autoprefixer": "^10.3.4",
"axios": "^0.21.4",
"ethers": "^5.4.6",
"gsap": "^3.7.1",
"magic-sdk": "^5.1.0",
"next": "11.1.2",
"postcss": "^8.3.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.0.0",
"tailwindcss": "^2.2.15",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@typechain/ethers-v5": "^7.0.1",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
}
}