-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.27 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.27 KB
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
105
{
"name": "nfthost",
"description": "NFT Collection Generator and Minting Website Hosting",
"version": "0.0.1",
"author": "StephenAsuncion",
"publisher": "StephenAsuncion",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stephenasuncionDEV/nfthost.git"
},
"homepage": "https://github.com/stephenasuncionDEV/nfthost#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/stephenasuncionDEV"
},
"bugs": {
"url": "https://github.com/stephenasuncionDEV/nfthost/issues"
},
"scripts": {
"dev": "next dev",
"dev:no-cache": "rm -rf .next/cache && npm run dev",
"lint": "next lint",
"lint:format": "prettier --check .",
"lint:staged": "npm run lint && npm run lint:format",
"format": "prettier --write .",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true npm run build",
"postbuild": "next-sitemap",
"start": "next start"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@coinbase/wallet-sdk": "^3.7.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@metamask/eth-sig-util": "^7.0.1",
"@metamask/safe-event-emitter": "^3.1.1",
"@react-icons/all-files": "^4.1.0",
"@reduxjs/toolkit": "^2.2.3",
"@signumjs/contracts": "^1.0.0-rc.70",
"@signumjs/core": "^1.0.0-rc.70",
"@signumjs/crypto": "^1.0.0-rc.70",
"@signumjs/http": "^1.0.0-rc.70",
"@signumjs/util": "^1.0.0-rc.70",
"@signumjs/wallets": "^1.0.0-rc.70",
"@solana/web3.js": "^1.91.4",
"@stackblitz/sdk": "^1.9.0",
"@stripe/react-stripe-js": "^2.7.0",
"@stripe/stripe-js": "^3.3.0",
"@tanstack/react-table": "^8.16.0",
"@walletconnect/web3-provider": "^1.8.0",
"axios": "^1.6.8",
"crypto-js": "^4.1.1",
"csv-file-validator": "^2.1.0",
"date-fns": "^3.6.0",
"ethers": "^6.11.1",
"file-saver": "^2.0.5",
"framer-motion": "^11.15.0",
"html-react-parser": "^5.1.10",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lzutf8": "^0.6.3",
"next": "^14.2.1",
"next-sitemap": "^4.2.3",
"p-retry": "^6.2.0",
"p-throttle": "^6.1.0",
"papaparse": "^5.4.1",
"posthog-js": "^1.125.0",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-code-blocks": "^0.1.6",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^5.1.0",
"react-image-crop": "^11.0.5",
"react-image-file-resizer": "^0.4.8",
"react-redux": "^9.1.1",
"react-responsive": "^10.0.0",
"react-use": "^17.5.0",
"react-window": "^1.8.10",
"recharts": "^2.12.5",
"sass": "^1.75.0",
"sharp": "^0.33.3",
"swr": "^2.2.5",
"validator": "^13.11.0",
"web3": "^4.7.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.1",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"postcss": "^8.4.38",
"prettier": "^2.8.2",
"tailwindcss": "^3.4.3"
}
}