-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.99 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
{
"name": "crypto-cash",
"version": "0.1.0",
"private": true,
"scripts": {
"ssl:setup": "node scripts/create-ssl-certs.js",
"dev": "next dev",
"dev-ssl": "NODE_EXTRA_CA_CERTS=\"$(cat ./certs/.capath)\" node scripts/create-local-server.js",
"dev:debug": "node --inspect-brk ./node_modules/.bin/next",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^11.0.4",
"@chainsafe/libp2p-yamux": "^4.0.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@ethersproject/providers": "^5.7.2",
"@libp2p/bootstrap": "^6.0.3",
"@libp2p/kad-dht": "^8.0.12",
"@libp2p/webrtc-star": "^6.0.0",
"@libp2p/webtransport": "^1.0.11",
"@openzeppelin/merkle-tree": "^1.0.4",
"@thirdweb-dev/react": "^3.11.7",
"@thirdweb-dev/sdk": "^3.10.10",
"@vercel/analytics": "^1.0.0",
"axios": "^1.3.4",
"blockstore-core": "^4.1.0",
"datastore-core": "^9.1.1",
"eslint-config-next": "13.2.4",
"ethers": "^5.7.2",
"libp2p": "^0.44.0",
"mongodb": "^5.1.0",
"mongoose": "^7.0.3",
"next": "13.2.4",
"qrcode": "^1.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"web3.storage": "^4.5.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.4",
"@types/node": "18.15.5",
"@types/pako": "^2.0.0",
"@types/qrcode": "^1.5.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "^10.4.14",
"chalk": "^5.2.0",
"devcert": "^1.2.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"https": "^1.0.0",
"postcss": "^8.4.21",
"prettier": "2.8.6",
"prettier-plugin-organize-imports": "^3.2.2",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2"
}
}