-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"name": "orakul",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile": "cd blockchain && npx hardhat compile",
"node": "cd blockchain && npx hardhat node",
"blockchain": "node start-blockchain.js",
"deploy-orakul-local": "cd blockchain && npx hardhat run ./scripts/deploy-orakul.js --network localhost",
"auto-fulfill-vrf": "cd blockchain && npx hardhat run ./scripts/auto-fulfill-vrf.js --network localhost",
"test-blockchain": "set HARDHAT_TEST=true&& cd blockchain && npx hardhat test"
},
"dependencies": {
"@react-three/drei": "^10.0.7",
"@react-three/fiber": "^9.1.2",
"@tanstack/react-query": "^5.74.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "15.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4",
"three": "^0.176.0",
"viem": "^2.28.0",
"wagmi": "^2.15.0"
},
"devDependencies": {
"@chainlink/contracts": "^1.3.0",
"@eslint/eslintrc": "^3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"hardhat": "^2.23.0",
"pino-pretty": "^13.0.0",
"typescript": "^5"
}
}