-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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": "web3music-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "npm run codegen",
"typechain-gen": "typechain --target ethers-v5 --out-dir src/contracts './src/contracts/abis/*.json'",
"codegen": "npm run graphql-gen && npm run typechain-gen",
"graphql-gen": "apollo service:download --endpoint=https://api.thegraph.com/subgraphs/name/thisisommore/muzik ./src/graph-ql/graphql-schema.json && apollo codegen:generate --localSchemaFile=./src/graph-ql/graphql-schema.json --target=typescript --tagName=gql"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@walletconnect/web3-provider": "^1.8.0",
"antd": "^4.22.3",
"ethers": "^5.6.9",
"graphql": "^15.8.0",
"next": "12.2.4",
"nft.storage": "^7.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"web3modal": "^1.9.8"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"@types/node": "18.6.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"apollo": "^2.34.0",
"autoprefixer": "^10.4.8",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.8",
"typechain": "^8.1.0",
"typescript": "4.7.4"
},
"resolutions": {
"graphql": "^15.8.0"
}
}