-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
68
69
70
71
72
{
"name": "beeport",
"version": "1.1.9",
"private": true,
"description": "Solutions for buying Bzz and obtaining postage stamps in multichain environment",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/beeport.git"
},
"homepage": "https://github.com/ethersphere/beeport",
"bugs": {
"url": "https://github.com/ethersphere/beeport/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"deploy:router": "TS_NODE_PROJECT=tsconfig.hardhat.json npx hardhat deploy --network gnosis --tags SushiSwapStampsRouter",
"verify:router": "TS_NODE_PROJECT=tsconfig.hardhat.json npx hardhat run scripts/verify_router.ts --network gnosis",
"verify:registry": "TS_NODE_PROJECT=tsconfig.hardhat.json npx hardhat run scripts/verify_registry.ts --network gnosis"
},
"dependencies": {
"@formbricks/js": "^4.1.0",
"@lifi/sdk": "3.6.7",
"@rainbow-me/rainbowkit": "^2.1.7",
"@tanstack/react-query": "^5.59.11",
"alchemy-sdk": "^3.6.1",
"axios": "^1.7.7",
"cors": "^2.8.5",
"encoding": "^0.1.13",
"express": "^4.21.2",
"http-proxy-middleware": "^3.0.3",
"jszip": "^3.10.1",
"next": "14.2.15",
"pako": "^2.1.0",
"pino-pretty": "^13.0.0",
"react": "^18",
"react-dom": "^18",
"serve": "^14.2.4",
"tar-js": "^0.3.0",
"trackjs-nextjs": "^1.0.3",
"viem": "^2.25.0",
"wagmi": "^2.12.17",
"zod": "^3.25.76"
},
"ts-node": {
"project": "./tsconfig.hardhat.json",
"transpileOnly": true
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@types/node": "^20.17.30",
"@types/pako": "^2.0.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/tar-js": "^0.3.5",
"dotenv": "^16.5.0",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^10.1.3",
"ethers": "^6.13.7",
"hardhat": "^2.23.0",
"hardhat-deploy": "^1.0.2",
"prettier": "^3.5.3",
"typescript": "^5"
}
}