-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
119 lines (119 loc) · 3.7 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
111
112
113
114
115
116
117
118
119
{
"name": "web3-substack",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"buildDirty": "vite build --mode development",
"typecheck": "tsc",
"preview": "vite preview",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"schema": "node --experimental-json-modules publishModals.js",
"serve": "node ./server.js"
},
"dependencies": {
"@alexkeating/quiver": "^0.10.2",
"@ceramicnetwork/stream-caip10-link": "^1.2.9",
"@datamodels/identity-accounts-crypto": "^0.1.2",
"@datamodels/identity-accounts-web": "^0.1.2",
"@datamodels/identity-profile-basic": "^0.1.2",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/inter": "^4.5.4",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.3",
"@radix-ui/react-accordion": "^0.1.6",
"@radix-ui/react-separator": "^0.1.4",
"@reduxjs/toolkit": "^1.7.1",
"@remirror/pm": "^1.0.11",
"@remirror/react": "^1.0.21",
"@remirror/react-editors": "^0.1.51",
"@rollup/plugin-strip": "^2.1.0",
"@self.id/web": "^0.2.0",
"@types/react-redux": "^7.1.22",
"@types/styled-components": "^5.1.20",
"@unlock-protocol/unlock-js": "^0.21.2",
"@walletconnect/ethereum-provider": "^1.7.1",
"authereum": "^0.1.14",
"borsh": "^0.7.0",
"caip": "^1.0.0",
"dids": "^2.4.3",
"electron": "^17.0.0",
"electron-fetch": "^1.7.4",
"ethers": "5.6.1",
"express": "^4.17.3",
"ipfs-http-client": "56.0.0",
"js-base64": "^3.7.2",
"lit-js-sdk": "^1.1.152",
"lodash": "^4.17.21",
"near-api-js": "^0.44.2",
"notistack": "^2.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.25.0",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"reakit": "^1.3.11",
"rehype-document": "^6.0.1",
"rehype-format": "^4.0.1",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remirror": "^1.0.62",
"styled-components": "^5.3.3",
"unified": "^10.1.2",
"vite-plugin-externals": "^0.3.3"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@glazed/devtools": "^0.1.3",
"@glazed/types": "^0.1.3",
"@rollup/plugin-inject": "^4.0.4",
"@taquito/taquito": "^11.2.0",
"@tendermint/sig": "^0.6.0",
"@types/create-hash": "^1.2.2",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-react": "^1.0.7",
"@zondax/filecoin-signing-tools": "^0.19.0",
"buffer-es6": "^4.9.3",
"child_process": "^1.0.2",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"http-browserify": "^1.7.0",
"key-did-provider-ed25519": "^1.1.0",
"path-browserify": "^1.0.1",
"prettier": "^2.5.1",
"process-es6": "^0.11.6",
"readable-stream": "^3.6.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"stream-browserify": "^3.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"url-polyfill": "^1.1.12",
"vite": "2.6.14",
"vite-tsconfig-paths": "^3.3.17"
},
"include": [
"src"
],
"engines": {
"node": "16.x"
}
}