-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "moonboard",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"worker:dev": "ts-node -r dotenv/config worker/worker.ts dotenv_config_path=.env.local",
"worker:build": "tsc -p worker"
},
"dependencies": {
"@fontsource/nunito": "^4.5.10",
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^2.0.11",
"@polkadot/api": "^9.4.1",
"@pusher/push-notifications-server": "^1.2.5",
"@pusher/push-notifications-web": "^1.1.0",
"@supabase/supabase-js": "^1.35.7",
"@trycourier/courier": "^3.15.0",
"classnames": "^2.3.2",
"dotenv": "^16.0.2",
"ethers": "^5.7.1",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"iron-session": "^6.2.1",
"jose": "^4.9.3",
"next": "12.3.0",
"next-transpile-modules": "^9.0.0",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-phone-number-input": "^3.2.11",
"siwe": "^2.0.5",
"usehooks-ts": "^2.7.1",
"wagmi": "^0.6.7"
},
"devDependencies": {
"@polkadot/typegen": "^9.4.1",
"@polkadot/types": "^9.4.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.11",
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "4.8.3"
}
}