-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "chainkestein",
"version": "1.0.0",
"description": "Cross-chain prediction markets with automated liquidity management",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts",
"test": "hardhat test",
"init-db": "tsx scripts/init-db.ts"
},
"dependencies": {
"@civic/auth-web3": "^0.7.2",
"@coinbase/onchainkit": "^0.38.19",
"@openzeppelin/contracts": "^5.4.0",
"@tanstack/react-query": "^5.87.1",
"@upstash/redis": "^1.35.3",
"@zetachain/protocol-contracts": "^13.0.0",
"@zetachain/toolkit": "^16.1.0",
"axios": "^1.6.0",
"dotenv": "^17.2.2",
"ethers": "^6.15.0",
"golem-base-sdk": "^0.1.16",
"next": "15.3.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tslog": "^4.9.0",
"viem": "^2.27.2",
"wagmi": "^2.16.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.2.0",
"hardhat": "^2.26.3",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0"
}
}