-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·51 lines (51 loc) · 1.51 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
{
"name": "demo",
"version": "0.1.0",
"private": true,
"scripts": {
"generate": "node scripts/commands.mjs",
"dev": "node scripts/run.mjs",
"nextDev": "next dev",
"ceramic": "CERAMIC_ENABLE_EXPERIMENTAL_COMPOSE_DB='true' ceramic daemon --config ./composedb.config.json",
"ceramic:local": "CERAMIC_ENABLE_EXPERIMENTAL_COMPOSE_DB='true' ceramic daemon",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.278.0",
"@ceramicnetwork/cli": "6.2.0",
"@ceramicnetwork/common": "6.2.0",
"@ceramicnetwork/http-client": "6.2.0",
"@composedb/cli": "0.6.1",
"@composedb/client": "0.6.0",
"@composedb/devtools": "0.6.1",
"@composedb/devtools-node": "0.6.1",
"@ceramicnetwork/blockchain-utils-linking": "5.6.0",
"@didtools/cacao": "2.1.0",
"@didtools/pkh-ethereum": "0.4.1",
"chalk": "^5.1.2",
"crypto-browserify": "^3.12.0",
"did-session": "^1.0.0",
"dids": "^3.2.0",
"graphql": "^16.6.0",
"next": "^12.0.4",
"ora": "^6.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.7.1",
"sass": "^1.57.1"
},
"devDependencies": {
"@composedb/types": "^0.3.0",
"@glazed/types": "^0.2.0",
"@types/node": "^17.0.15",
"@types/react": "^18.0.0",
"eslint": "^8.3.0",
"eslint-config-next": "^12.0.4",
"key-did-provider-ed25519": "^2.0.1",
"key-did-resolver": "^2.1.3",
"typescript": "^4.5.2",
"uint8arrays": "^4.0.2"
}
}