-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "taco-demo",
"version": "0.0.0",
"description": "A usage example for @nucypher/taco",
"private": true,
"author": "Piotr Rosłaniec <[email protected]>",
"scripts": {
"start": "webpack serve --mode development",
"build": "pnpm clean && webpack --mode production --progress",
"clean": "rimraf build",
"check": "pnpm type-check && pnpm build",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ardrive/turbo-sdk": "1.9.0",
"@irys/sdk": "^0.1.24",
"@nucypher/taco": "^0.6.0-alpha.1",
"@nucypher/taco-auth": "^0.3.0-alpha.1",
"@tanstack/react-query": "^5.39.0",
"@usedapp/core": "^1.2.13",
"arbundles": "^0.11.0",
"buffer": "^6.0.3",
"ethers": "^5.7.1",
"file-loader": "^6.2.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"os-browserify": "^0.3.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.6",
"viem": "2.x",
"wagmi": "^2.9.7"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/react": "^18.2.48",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.18",
"copy-webpack-plugin": "^12.0.2",
"crypto-browserify": "^3.12.0",
"esbuild-loader": "^2.20.0",
"html-webpack-plugin": "^5.5.0",
"process": "^0.11.10",
"react-refresh": "^0.14.0",
"rimraf": "^5.0.5",
"stream-browserify": "^3.0.0",
"typescript": "^4.8.3",
"vm-browserify": "^1.1.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.1"
}
}