forked from OrbisWeb3/orbisdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.69 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
{
"name": "orbisdb",
"version": "1.0.0",
"description": "OrbisDB is an open database built on top of Ceramic allowing you to index and query your Ceramic data while extanding Ceramic capabilities with plugins. ",
"keywords": [
"web3",
"database",
"open-data",
"node",
"orbis"
],
"license": "MIT",
"homepage": "https://github.com/OrbisWeb3/orbisdb#readme",
"repository": {
"type": "git",
"url": "https://github.com/OrbisWeb3/orbisdb.git"
},
"bugs": "https://github.com/OrbisWeb3/orbisdb/issues",
"author": {
"name": "Orbis",
"url": "https://github.com/OrbisWeb3"
},
"scripts": {
"build": "cd client && next build",
"start": "cross-env NODE_ENV=production node index.js",
"dev": "node index.js",
"dev:debug": "cross-env LOG_LEVEL=debug node index.js",
"format": "prettier . --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "index.js",
"type": "module",
"dependencies": {
"@ceramicnetwork/codecs": "^4.13.0-nightly.20240606002730.0",
"@ceramicnetwork/common": "^5.13.0-nightly.20240606002730.0",
"@ceramicnetwork/http-client": "^5.14.0-nightly.20240606002730.0",
"@ceramicnetwork/stream-model": "^4.13.0-nightly.20240606002730.0",
"@ceramicnetwork/stream-model-instance": "^4.14.0-nightly.20240606002730.0",
"@ceramicnetwork/streamid": "^5.3.0-nightly.20240606002730.0",
"@fastify/cors": "^9.0.1",
"@fastify/multipart": "^8.2.0",
"@fastify/sensible": "^5.5.0",
"@fastify/static": "^7.0.3",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.90.1",
"@supabase/supabase-js": "^2.38.1",
"@useorbis/db-sdk": "^0.0.33-alpha",
"ace-builds": "^1.33.1",
"better-sqlite3": "^9.3.0",
"bs58": "^5.0.0",
"change-case": "^5.4.2",
"codeco": "^1.2.1",
"cross-env": "^7.0.3",
"cross-eventsource": "^1.0.0",
"dids": "^4.0.4",
"ethers": "^6.11.1",
"fastify": "^4.26.2",
"formidable": "^3.5.1",
"fs": "^0.0.1-security",
"install": "^0.13.0",
"ipfs-http-client": "^60.0.1",
"key-did-provider-ed25519": "^3.0.2",
"key-did-resolver": "^3.0.0",
"lodash": "^4.17.21",
"next": "^13.5.6",
"npm": "^10.3.0",
"pg": "^8.11.3",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-time-ago": "^7.3.3",
"remark-gfm": "^4.0.0",
"uuid": "^9.0.1",
"web3": "^4.3.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=8.6.0"
}
}