-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
90 lines (90 loc) · 2.87 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
{
"name": "glo-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"db:migrate-deploy": "prisma migrate deploy",
"db:generate-migration": "prisma migrate dev",
"preinstall": "bash preinstall.sh",
"postinstall": "prisma generate && npm run db:migrate-deploy",
"lint": "next lint",
"prepare": "husky install",
"fmt": "prettier --write './**/*.{js,jsx}' './**/*.{ts,tsx}' './**/*.css' './**/*.json' './**/*.md'",
"test:e2e": "E2E=true npx playwright test --project=chromium --headed",
"test:e2e:headless": "E2E=true npx playwright test --project=chromium"
},
"dependencies": {
"@0xsequence/wagmi-connector": "^4.0.1",
"@0xsquid/widget": "^4.0.0",
"@coinbase/onchainkit": "^0.34.1",
"@creit.tech/stellar-wallets-kit": "^0.8.4-beta1",
"@prisma/client": "^4.15.0",
"@sentry/nextjs": "^7.77.0",
"@stellar/stellar-sdk": "^12.3.0",
"@tanstack/react-query": "^5.59.15",
"@vechain/dapp-kit": "^1.0.13",
"@vechain/dapp-kit-react": "^1.0.13",
"@vechain/dapp-kit-ui": "^1.0.13",
"@vercel/kv": "^0.2.2",
"@vercel/og": "^0.5.13",
"@wagmi/core": "^2.6.13",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/sign-client": "^2.13.3",
"0xsequence": "^2.0.17",
"axios": "^1.4.0",
"canvas-confetti": "^1.6.0",
"clsx": "^1.2.1",
"ethereum-block-by-date": "^1.5.0",
"ethers": "^6.13.4",
"express-rate-limit": "^6.10.0",
"framer-motion": "^10.12.17",
"google-spreadsheet": "^3.3.0",
"graphql": "^16.10.0",
"idriss-crypto": "^2.0.0",
"js-cookie": "^3.0.5",
"lottie-react": "^2.4.0",
"moralis": "^2.20.0",
"next": "^14.2.18",
"pino": "^8.14.1",
"qrcode.react": "^3.1.0",
"rc-slider": "^10.1.1",
"react": "18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-tooltip": "^5.13.1",
"swr": "^2.2.5",
"typescript": "5.0.4",
"urql": "^4.2.1",
"viem": "^2.21.44",
"wagmi": "^2.14.7",
"zustand": "^4.3.8"
},
"devDependencies": {
"@guardianui/test": "^1.0.4",
"@playwright/test": "^1.33.0",
"@types/canvas-confetti": "^1.6.0",
"@types/ethereum-block-by-date": "^1.4.1",
"@types/google-spreadsheet": "^3.3.2",
"@types/js-cookie": "^3.0.3",
"@types/node": "18.11.18",
"@types/react": "18.3.11",
"@types/react-dom": "18.0.10",
"@types/react-modal": "^3.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"autoprefixer": "^10.4.13",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"pino-pretty": "^10.0.0",
"postcss": "^8.4.21",
"prettier": "2.8.3",
"prisma": "^4.15.0",
"tailwindcss": "^3.2.4"
}
}