-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.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
{
"name": "renft-cryptopunks",
"version": "0.2.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "yarn prettier --write scripts hooks contexts components composed-components pages",
"check": "yarn prettier --check scripts hooks contexts components composed-components pages",
"graph:gen": "yarn graph codegen && yarn graph build",
"graph:deploy": "yarn graph:gen && yarn graph deploy --debug re-nft/cryptopunks-rent --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/"
},
"dependencies": {
"@headlessui/react": "^0.3.2",
"@heroicons/react": "^1.0.1",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0",
"axios": "^0.21.2",
"ethereum-blockies": "^0.1.1",
"ethers": "^5.1.0",
"graphql-request": "^3.4.0",
"next": "10.1.3",
"node-forge": "^1.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.32.8",
"web3modal": "^1.9.3",
"yargs-parser": "^18.1.2"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.21.1",
"@graphprotocol/graph-ts": "0.20.1",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.1",
"postcss": "^8.2.13",
"prettier": "2.2.1",
"tailwindcss": "^2.1.0"
}
}