-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
104 lines (104 loc) · 3.58 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
{
"name": "hyperboards",
"version": "0.1.0",
"private": true,
"source": "widget/index.tsx",
"targets": {
"widget": {
"distDir": "./dist-widget",
"includeNodeModules": true
}
},
"parcel-namer-rewrite": {
"hashing": "never",
"disable": false
},
"scripts": {
"dev": "next dev",
"build": "pnpm run widget:build && pnpm run widget:copy-to-public && next build",
"start": "next start",
"lint": "next lint",
"supabase:init": "supabase init",
"supabase:start": "supabase start",
"supabase:seed": "npx @snaplet/seed sync && npx tsx seed.mts",
"supabase:types": "supabase gen types typescript --local > ./types/database.ts",
"supabase:types:hypercerts": "npx supabase gen types typescript --project-id clagjjfinooizoqdkvqc --schema public > types/hypercerts-database.ts",
"supabase:migration:new": "supabase migration new",
"supabase:migration:push": "supabase migration up",
"supabase:migration:diff": "supabase db diff --schema public",
"supabase:migration:reset": "supabase db reset",
"snaplet:restore": "snaplet snapshot restore --no-reset",
"widget:build": "rimraf dist-widget && parcel build ./widget/hyperboard-widget.tsx --no-source-maps --no-cache --no-content-hash --target widget",
"widget:copy-to-public": "copyfiles \"dist-widget/*.js\" --up 1 public/widget",
"widget:dev": "rimraf dist-widget && parcel serve ./widget/index.html --port 3001 --log-level info --no-cache --target widget",
"widget:serve": "npx -y http-server 'dist-widget' -p 3001"
},
"dependencies": {
"@0no-co/graphqlsp": "^1.12.8",
"@ant-design/icons": "^5.3.0",
"@celo/rainbowkit-celo": "^1.2.1",
"@chakra-ui/modal": "^2.3.1",
"@chakra-ui/react": "^2.8.0",
"@chakra-ui/react-use-size": "^2.1.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hypercerts-org/contracts": "2.0.0-alpha.0",
"@hypercerts-org/marketplace-sdk": "0.1.6",
"@hypercerts-org/sdk": "2.3.0",
"@rainbow-me/rainbowkit": "^2.1.2",
"@snaplet/seed": "^0.91.1",
"@supabase/supabase-js": "^2.33.1",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-devtools": "^5.20.5",
"@tanstack/react-table": "^8.10.7",
"@uidotdev/usehooks": "^2.4.1",
"@urql/core": "^5.0.4",
"chakra-dayzed-datepicker": "^0.2.10",
"d3": "^7.8.5",
"date-fns": "^2.30.0",
"dayzed": "^3.2.3",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"ethers": "6.8.0",
"framer-motion": "^10.16.2",
"gql.tada": "^1.7.6",
"hamburger-react": "^2.5.0",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"next": "13.5.5",
"nextjs-cors": "^2.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-select": "^5.7.7",
"react-slick": "^0.29.0",
"react-use": "^17.5.1",
"slick-carousel": "^1.8.1",
"supabase": "^1.106.1",
"typescript": "5.2.2",
"viem": "2.23.6",
"wagmi": "2.14.12",
"zod": "^3.22.4"
},
"devDependencies": {
"@parcel/compressor-brotli": "^2.11.0",
"@parcel/compressor-gzip": "^2.11.0",
"@snaplet/copycat": "^0.18.1",
"@types/d3": "^7.4.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"copyfiles": "^2.4.1",
"lokijs": "^1.5.12",
"parcel": "^2.11.0",
"parcel-namer-rewrite": "^2.10.3-rc.2",
"postgres": "^3.4.4",
"prettier": "^3.0.3",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"tsx": "^4.7.2"
}
}