-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 3.09 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mec-registry-app",
"version": "1.0.0",
"description": "Learning Basic State Idea of Ethereum",
"main": "index.js",
"scripts": {
"lint": "next lint",
"dev": "next dev",
"test": "jest",
"test:watch": "jest --watch",
"build": "next build",
"start": "next start",
"lint:fix": "next lint --fix && npm run format",
"format": "prettier --write src",
"lint:strict": "eslint --max-warnings=0 src",
"anvil": "./scripts/setenv.sh .env && anvil",
"generate-types": "typechain --out-dir src/types --target=ethers-v6 'src/abis/*.json'",
"wagmi": ". ./scripts/setenv.sh .env && wagmi generate --config wagmi.config.ts && cp contract/out/IssuerRegistry.sol/IssuerRegistry.json src/abis/ && cp contract/out/AchievementCredentialRegistry.sol/AchievementCredentialRegistry.json src/abis/",
"prepareAbi": "npm run wagmi && npm run generate-types",
"deploy": ". ./scripts/setenv.sh .env && echo \"Deploying IssuerRegistry\" && forge create contract/src/IssuerRegistry.sol:IssuerRegistry --rpc-url $RPC_URL --private-key $FORGE_PRIVATE_KEY && echo \"Deploying AchievementCredentialRegistry\" && forge create contract/src/AchievementCredentialRegistry.sol:AchievementCredentialRegistry --rpc-url $RPC_URL --private-key $FORGE_PRIVATE_KEY"
},
"keywords": [
"Vite",
"express",
"Javascript"
],
"author": "Yuri Fukuda",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/next": "^9.0.0",
"@types/node-jose": "^1.1.13",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@wagmi/cli": "^2.1.8",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"sass": "^1.77.2",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"dependencies": {
"@tanstack/react-query": "^5.40.0",
"axios": "^1.7.2",
"ethereumjs-util": "^7.1.5",
"ethers": "^6.12.1",
"i18next": "^23.11.5",
"lottie-react": "^2.4.0",
"next": "^14.2.3",
"next-i18next": "^15.3.0",
"next-iron-session": "^4.2.0",
"node-jose": "^2.2.0",
"react": "^18.3.1",
"react-datepicker": "^7.1.0",
"react-dom": "^18.3.1",
"react-i18next": "^13.5.0",
"react-lottie-player": "^2.0.0",
"react-qr-code": "^2.0.15",
"react-toastify": "^10.0.5",
"uuid": "^10.0.0",
"viem": "^2.13.7",
"wagmi": "^2.10.10"
}
}