-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.84 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
{
"name": "lfgho-hackathon-ghoticket",
"description": "Create claimable tickets to send ERC20 tokens without specifying any wallet address. Simple as using cash!",
"version": "0.10.0",
"repository": "https://github.com/philogicae/lfgho-hackathon-ghoticket",
"private": false,
"author": "@philogicae",
"license": "MIT",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"serve": "serve out",
"lint": "next lint",
"preview": "vercel build && vercel deploy --prebuilt",
"vercel": "vercel build --prod && vercel deploy --prebuilt --prod",
"fleek": "fleek sites deploy",
"vercel+fleek": "vercel build --prod && vercel deploy --prebuilt --prod && fleek sites deploy",
"node": "hardhat node",
"solhint": "solhint contracts/**/*.sol",
"flatten": "hardhat flatten > artifacts/flatten.sol",
"compile": "hardhat compile",
"deploy-gho": "hardhat run scripts/deploy-gho.js --network",
"deploy": "hardhat run scripts/deploy-qrflow.js --network",
"verify": "hardhat verify --network",
"pip-install": "./aleph-im/scripts/pip-install.sh",
"pip-build": "./aleph-im/scripts/pip-build.sh",
"pip-upload": "./aleph-im/scripts/pip-upload.sh",
"dev-api": "./aleph-im/scripts/dev-api.sh",
"aleph": "./aleph-im/scripts/deploy-no-pip.sh",
"aleph-with-pip": "./aleph-im/scripts/deploy-with-pip.sh",
"set-domain": "./aleph-im/scripts/set-domain.sh"
},
"dependencies": {
"@covalenthq/client-sdk": "^0.8.9",
"@nextui-org/react": "^2.4.1",
"@tanstack/react-query": "^5.40.1",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"@wojtekmaj/react-qr-svg": "^1.0.0",
"@zalari/string-compression-utils": "^0.1.1",
"connectkit": "^1.8.0",
"framer-motion": "^10.18.0",
"nanoid": "^5.0.7",
"next": "14.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.1",
"viem": "~2.7.22",
"wagmi": "~2.5.22"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@openzeppelin/contracts": "^5.0.2",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.22.5",
"paginated-enumerableset": "^1.0.3",
"postcss": "^8.4.38",
"prettier": "3.2.2",
"prompt-sync": "^4.2.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
}
}