-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "ens-nfts",
"private": true,
"description": "Naming Ethereum NFTs with ENS and EIP 2381",
"version": "0.1.0",
"author": "Oisín Kyne <[email protected]>",
"dependencies": {
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@metamask/onboarding": "^1.0.0",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"clsx": "^1.1.1",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.0.23",
"gatsby": "^2.27.4",
"gatsby-image": "^2.6.0",
"gatsby-plugin-manifest": "^2.7.0",
"gatsby-plugin-offline": "^3.5.0",
"gatsby-plugin-react-helmet": "^3.5.0",
"gatsby-plugin-sharp": "^2.9.1",
"gatsby-source-filesystem": "^2.6.1",
"gatsby-source-graphql": "^2.9.0",
"gatsby-theme-material-ui": "^1.0.13",
"gatsby-transformer-sharp": "^2.7.0",
"notistack": "^0.9.17",
"pino": "^6.7.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/pino": "^6.3.4",
"gh-pages": "^3.1.0",
"pino-pretty": "^4.3.0",
"prettier": "2.0.5"
},
"keywords": [
"gatsby"
],
"license": "APACHE 2.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && echo \"nft.kyne.eu\" > ./public/CNAME && gh-pages -d public",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/KyneSoftware/ens-nfts/"
},
"bugs": {
"url": "https://github.com/KyneSoftware/ens-nfts/issues/"
}
}