-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
{
"name": "arweave-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/add-asset-prefix.mjs",
"postbuild": "node scripts/remove-asset-prefix.mjs && prettier --write './next.config.js'",
"build": "pnpm prebuild && next build && next export && pnpm postbuild",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf node_modules out",
"upload": "pnpm build && node scripts/deploy.mjs"
},
"dependencies": {
"@aura-ui/react": "0.0.5-alpha.2",
"@bundlr-network/client": "0.11.1",
"@fontsource/inter": "4.5.14",
"@permaweb/asset-web-sdk": "0.0.4",
"@permaweb/stampjs": "0.2.2",
"@radix-ui/colors": "0.1.8",
"@radix-ui/react-icons": "1.1.1",
"@radix-ui/react-popover": "1.0.5",
"@stitches/react": "1.2.8",
"@tanstack/react-query": "4.28.0",
"@visx/gradient": "2.10.0",
"@visx/group": "2.10.0",
"@visx/hierarchy": "2.10.0",
"@visx/responsive": "2.10.0",
"@visx/shape": "2.12.2",
"arweave": "1.13.7",
"arweave-account": "1.3.4",
"arweave-graphql": "0.0.5",
"arweave-wallet-ui-test": "0.0.12",
"crocks": "^0.12.4",
"date-fns": "2.29.3",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"formik": "2.2.9",
"motion": "10.15.5",
"motion-hooks": "0.1.1",
"next": "12.3.0",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"react-router-dom": "6.11.2",
"react-zoom-pan-pinch": "2.1.3",
"vouchdao": "0.2.6",
"warp-contracts": "1.4.8"
},
"devDependencies": {
"@types/node": "18.11.13",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"arlocal": "1.1.59",
"arweave-wallet-connector": "0.0.31",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"pnpm": {
"patchedDependencies": {
"react-zoom-pan-pinch@2.1.3": "patches/react-zoom-pan-pinch@2.1.3.patch"
}
}
}