-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 3.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "mintship-alpha",
"version": "0.2.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"reset": "rimraf .next out node_modules",
"lint": "next lint",
"lint:fix": "next lint --fix",
"build:tailwind": "tailwind build -i src/styles/tailwind.css -o src/styles/global.css",
"watch:tailwind": "tailwind -w -i src/styles/tailwind.css -o src/styles/global.css",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@ethersproject/abi": "^5.6.1",
"@ethersproject/abstract-signer": "^5.6.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@sekmet/jazzicon": "^2.0.2",
"@sekmet/react-confetti": "^6.0.1",
"@sekmet/react-ipfs-uploader": "^1.3.32",
"@sekmet/react-use": "^17.3.3",
"@solana/qr-code-styling": "^1.6.0-beta.0",
"@usedappify/core": "^0.11.30",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.0",
"ethers": "^5.6.4",
"graphql": "^16.3.0",
"graphql-ws": "^5.7.0",
"ipfs-http-client": "^56.0.3",
"js-base64": "^3.7.2",
"next": "^12.1.0",
"next-auth": "^4.2.1",
"next-seo": "^5.1.0",
"nodemailer": "^6.7.2",
"nprogress": "^0.2.0",
"omit-deep": "^0.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.29.0",
"react-loading-skeleton": "^3.1.0",
"string-similarity-js": "^2.1.4",
"styled-jsx-plugin-postcss": "^4.0.1",
"sweetalert2": "^11.4.8",
"swr": "^1.2.2",
"twit": "^2.2.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/twit": "^2.2.30",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.17",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.4.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"typescript": "4.5.4"
},
"license": "MIT"
}