-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.74 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
{
"name": "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": "rm -rf src/contracts/*ts src/contracts/factories/* && 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/flexbuild ./src/graph-ql/graphql-schema.json && apollo codegen:generate --localSchemaFile=./src/graph-ql/graphql-schema.json --target=typescript --tagName=gql && rm -rf __generated__"
},
"dependencies": {
"@apollo/client": "^3.7.5",
"@monaco-editor/react": "^4.4.6",
"@next/font": "13.1.4",
"@rainbow-me/rainbowkit": "^0.8.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.3.1",
"eslint": "8.32.0",
"eslint-config-next": "13.1.4",
"ethers": "^5.7.2",
"graphql": "^15.8.0",
"mustache": "^4.2.0",
"next": "13.1.4",
"nft.storage": "^7.0.0",
"react": "18.2.0",
"react-dnd": "^16.0.1",
"react-dom": "18.2.0",
"react-toastify": "^9.1.1",
"rxjs": "^7.8.0",
"sass": "^1.57.1",
"three-dots": "^0.3.2",
"typescript": "4.9.4",
"wagmi": "^0.11.2"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@types/mustache": "^4.2.2",
"apollo": "^2.34.0",
"autoprefixer": "^10.4.13",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typechain": "^8.1.1"
},
"resolutions": {
"graphql": "^15.8.0"
}
}