-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 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
{
"name": "ethereum101",
"version": "1.0.0",
"description": "Learning Basic State Idea of Ethereum",
"main": "index.js",
"scripts": {
"lint": "next lint",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"test": "echo \"Error: no test specified\" && exit 1",
"anvil": "dotenv-run-script .env && anvil",
"wagmi": "wagmi generate && cp contract/out/TokenRegistry.sol/TokenRegistry.json src/abis/",
"setenv": "dotenv-run-script .env --",
"dev:foundry": "npm run dev & wagmi generate --watch & npm run anvil",
"deploy": "forge create contract/src/TokenRegistry.sol:TokenRegistry --rpc-url $FORGE_RPC_URL --private-key $FORGE_PRIVATE_KEY",
"forge:deploy:anvil": "forge create contract/src/TokenRegistry.sol:TokenRegistry --rpc-url $FORGE_RPC_URL --private-key $FORGE_PRIVATE_KEY"
},
"keywords": [
"Vite",
"express",
"Javascript"
],
"author": "Yuri Fukuda",
"license": "ISC",
"devDependencies": {
"@types/next": "^9.0.0",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@wagmi/cli": "^2.1.8",
"autoprefixer": "^10.4.19",
"dotenv-run-script": "^0.4.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"express": "^4.19.2",
"postcss": "^8.4.38",
"sass": "^1.77.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"dependencies": {
"@tanstack/react-query": "^5.40.0",
"@wagmi/chains": "^1.8.0",
"ethers": "^6.12.1",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.13.7",
"wagmi": "^2.9.7"
}
}