-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
106 lines (106 loc) · 2.95 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
{
"name": "theconvospace",
"version": "1.0.0",
"license": "MIT",
"sideEffects": false,
"cacheDirectories": [
".next/cache",
"node_modules"
],
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start --port $PORT",
"export": "next export",
"tunnel": "lt --port 3000 --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.20.12",
"@babel/runtime": "^7.20.13",
"@biconomy/mexa": "^3.0.5",
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.1",
"@chakra-ui/system": "^2.5.1",
"@dicebear/collection": "^5.3.4",
"@dicebear/core": "^5.3.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@gnosis.pm/safe-apps-web3modal": "^17.0.4",
"@hapi/iron": "^7.0.1",
"@onflow/fcl": "^1.3.2",
"@portis/web3": "^4.0.7",
"@react-three/drei": "^9.56.25",
"@react-three/fiber": "^8.11.2",
"@self.id/web": "^0.5.0",
"@solana/web3.js": "^1.73.2",
"@textile/hub": "^6.3.4",
"@theconvospace/sdk": "^0.6.12",
"@walletconnect/web3-provider": "^1.8.0",
"ably": "^1.2.36",
"axios": "^0.27.2",
"bs58": "^5.0.0",
"bson-ext": "^4.0.3",
"critters": "^0.0.16",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"framer-motion": "^8.5.5",
"got": "^12.5.3",
"ioredis": "^5.3.1",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"kerberos": "^2.0.1",
"key-did-provider-ed25519": "^2.0.1",
"mongodb": "^4.14.0",
"mongodb-client-encryption": "^2.5.0",
"near-api-js": "^1.1.0",
"next": "^13.1.6",
"next-pwa": "^5.6.0",
"node-fetch": "^3.3.0",
"prop-types": "^15.8.1",
"qr-code-styling": "^1.6.0-rc.1",
"react": "^18.2.0",
"react-data-table-component": "^7.5.3",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.3.5",
"react-linkify": "^1.0.0-alpha",
"recharts": "2.4.3",
"sharp": "^0.31.3",
"styled-components": "^5.3.6",
"swr": "^2.0.3",
"telegraf": "^4.11.2",
"three": "^0.149.0",
"tweetnacl": "^1.0.3",
"twitter-v2": "^1.1.0",
"url-metadata": "^2.5.0",
"web3modal": "^1.9.12",
"webpack": "^5.75.0",
"zokrates-js": "1.0.43"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.1.6",
"bfj": "^7.0.2",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"next-sitemap": "^3.1.52",
"terraform": "^1.22.1",
"tf-next": "^0.13.2"
},
"engines": {
"node": ">=16.6.0"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}