-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.99 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
{
"name": "simplepredictionmarket",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy:sonic": "hardhat run scripts/deploy.js --network sonic",
"compile": "hardhat compile",
"engine:setup": "./scripts/setup-local-engine.sh",
"engine:start": "docker compose -f docker-compose.engine.yml up -d",
"engine:stop": "docker compose -f docker-compose.engine.yml down",
"engine:logs": "docker compose -f docker-compose.engine.yml logs -f engine",
"engine:status": "docker compose -f docker-compose.engine.yml ps",
"engine:create": "npx thirdweb engine create",
"engine:list": "npx thirdweb engine list",
"telegram:listen": "node scripts/telegram-event-listener.js",
"telegram:listen:enhanced": "node scripts/telegram-event-listener-enhanced.js"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"alchemy-sdk": "^3.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.453.0",
"next": "15.0.7",
"node-telegram-bot-api": "^0.66.0",
"pg": "^8.11.3",
"ethers": "^5.8.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "^5.64.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.3",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@types/node": "^20",
"@types/node-telegram-bot-api": "^0.64.13",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^17.2.3",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"ethers": "^5.8.0",
"hardhat": "^2.27.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"@types/pg": "^8.11.10"
}
}