-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.82 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
{
"name": "next-dash",
"version": "0.1.0",
"private": true,
"scripts": {
"firstTime": "npx aws-sdk-js-codemod -t v2-to-v3 .",
"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' npx @ceramicnetwork/cli daemon",
"build": "next build",
"start": "next start",
"lint": "next lint",
"create-composites": "composedb composite:create models/prompt.graphql --output=composites/prompt.json --ceramic-url=http://localhost:7007",
"compile-composites-js": "composedb composite:compile composites/prompt.json src/__generated__/definition.json",
"compile-composites-json": "composedb composite:compile composites/prompt.json src/__generated__/definition.json",
"graphql": "composedb graphql:server src/__generated__/definition.json"
},
"dependencies": {
"@ceramicnetwork/blockchain-utils-linking": "2.18.0",
"@ceramicnetwork/cli": "^2.22.0",
"@ceramicnetwork/common": "2.33.0",
"@ceramicnetwork/http-client": "2.30.0",
"@composedb/client": "0.5.0",
"@composedb/devtools": "0.5.0",
"@composedb/devtools-node": "0.5.0",
"@didtools/cacao": "2.1.0",
"@didtools/pkh-ethereum": "0.4.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@huddle01/iframe": "^0.0.7",
"@huddle01/react": "^0.0.11",
"@lighthouse-web3/sdk": "^0.2.7",
"@lit-protocol/lit-node-client": "^2.2.21",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"@next/font": "13.1.2",
"@tanstack/react-query": "^4.29.5",
"chalk": "^5.1.2",
"chart.js": "^4.1.2",
"classnames": "^2.3.2",
"did-session": "^2.0.1",
"dids": "^4.0.4",
"dotenv": "^16.1.4",
"ethers": "5.7.2",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"graphql-tools": "^9.0.0",
"magic-sdk": "^17.4.0",
"moralis": "1.11.0",
"moralis-v1": "^1.13.0",
"next": "^12.0.4",
"nft.storage": "^7.1.0",
"ora": "^6.1.2",
"react": "^18.0.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.0.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-icons": "^4.7.1",
"react-moralis": "^1.4.2",
"web3": "^1.10.0",
"web3uikit": "^1.0.4"
},
"devDependencies": {
"@composedb/types": "^0.5.0",
"@datamodels/identity-profile-basic": "^0.2.0",
"@glazed/types": "^0.2.0",
"@types/node": "^17.0.15",
"@types/react": "^18.0.0",
"autoprefixer": "^10.4.13",
"key-did-provider-ed25519": "^3.0.2",
"key-did-resolver": "^3.0.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^4.5.2",
"uint8arrays": "^4.0.2"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}