-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
110 lines (110 loc) · 3 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
105
106
107
108
109
110
{
"name": "theconvospace",
"version": "1.0.0",
"license": "MIT",
"sideEffects": false,
"cacheDirectories": [
".next/cache",
"node_modules"
],
"scripts": {
"dev": "next dev --port 5004",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start --port $PORT",
"export": "next export",
"tunnel": "lt --port 5004 --subdomain convo",
"sync": "node sync.js",
"lint": "next lint",
"cron:cacheV2": "node ./cron/cacheV2.js",
"cron:backup": "node ./cron/backupFilecoin.js",
"tf-next": "tf-next build",
"tf-apply": "terraform apply"
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/runtime": "^7.24.4",
"@biconomy/mexa": "^3.0.6",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@dicebear/collection": "^8.0.1",
"@dicebear/core": "^8.0.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@gnosis.pm/safe-apps-web3modal": "^17.0.4",
"@hapi/iron": "^7.0.1",
"@onflow/fcl": "^1.10.0",
"@portis/web3": "^4.0.7",
"@react-three/drei": "^9.105.3",
"@react-three/fiber": "^8.16.1",
"@self.id/web": "^0.5.0",
"@solana/web3.js": "^1.91.4",
"@textile/hub": "^6.3.4",
"@theconvospace/sdk": "^0.6.18",
"@walletconnect/web3-provider": "^1.8.0",
"ably": "^1.2.48",
"bs58": "^5.0.0",
"bson-ext": "^4.0.3",
"critters": "^0.0.22",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"framer-motion": "^11.0.25",
"got": "^13.0.0",
"ioredis": "^5.3.2",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"kerberos": "^2.1.0",
"key-did-provider-ed25519": "^3.0.1",
"mongodb": "^6.5.0",
"mongodb-client-encryption": "^6.0.0",
"near-api-js": "^2.1.4",
"next": "^14.1.4",
"next-pwa": "^5.6.0",
"node-fetch": "^3.3.2",
"prop-types": "^15.8.1",
"qr-code-styling": "1.6.0-rc.1",
"react": "^18.2.0",
"react-data-table-component": "^7.6.2",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-linkify": "1.0.0-alpha",
"recharts": "2.10.4",
"sharp": "^0.33.3",
"styled-components": "6.1.8",
"swr": "^2.2.5",
"telegraf": "^4.16.3",
"three": "^0.163.0",
"tweetnacl": "^1.0.3",
"twitter-v2": "^1.1.0",
"url-metadata": "^3.3.1",
"web3modal": "^1.9.12",
"webpack": "^5.91.0",
"zokrates-js": "1.1.9"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.4",
"bfj": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^14.1.4",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"next-sitemap": "^4.2.3",
"terraform": "^1.23.0",
"tf-next": "^0.13.2"
},
"overrides": {
"@onflow/fcl": {
"eslint-plugin-jsdoc": "latest"
}
},
"engines": {
"node": ">=18.x"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}