-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.68 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "nx-dapp-setup-for-hardhat-nextjs",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:takahirohonda/nx-dapp-setup-for-hardhat-nextjs.git",
"author": "takahirohonda <[email protected]>",
"license": "MIT",
"scripts": {
"dev:turbo": "yarn nx dev next-gb --turbo",
"hardhat:node": "yarn nx hardhat:node hardhat-gb",
"deploy-local-1": "yarn nx deploy:level hardhat-gb",
"deploy-local-2": "yarn nx deploy:characters hardhat-gb",
"deploy-local-3": "yarn nx deploy:characters-nonpayable hardhat-gb",
"deploy-testnet-1": "yarn nx deploy:level:alchemy-sepolia hardhat-gb",
"deploy-testnet-2": "yarn nx deploy:characters:alchemy-sepolia hardhat-gb",
"deploy-testnet-3": "yarn nx deploy:characters-nonpayable:alchemy-sepolia hardhat-gb"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.8.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nx/esbuild": "20.2.1",
"@nx/eslint": "20.2.1",
"@nx/eslint-plugin": "20.2.1",
"@nx/jest": "20.2.1",
"@nx/js": "20.2.1",
"@nx/next": "20.2.1",
"@nx/node": "20.2.1",
"@nx/react": "20.2.1",
"@nx/vite": "20.2.1",
"@nx/web": "20.2.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/react": "15.0.6",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/jest": "^29.5.12",
"@types/mocha": ">=9.1.0",
"@types/node": "~18.16.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^1.3.1",
"autoprefixer": "10.4.13",
"babel-jest": "^29.7.0",
"chai": "^4.2.0",
"drizzle-kit": "^0.30.1",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"ethers": "^6.4.0",
"hardhat": "^2.22.17",
"hardhat-gas-reporter": "^1.0.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "~22.1.0",
"nx": "20.2.1",
"postcss": "8.4.38",
"prettier": "^2.6.2",
"sass": "^1.55.0",
"solidity-coverage": "^0.8.0",
"tailwindcss": "3.4.3",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typechain": "^8.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.13.0",
"vite": "^5.0.0",
"vite-plugin-dts": "~3.8.1",
"vitest": "^1.3.1"
},
"nx": {},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@libsql/client": "^0.14.0",
"@mdhnpm/react-cube-loading-spinner": "^2.1.1",
"@nextui-org/react": "^2.6.8",
"@tanstack/react-query": "^5.62.3",
"add": "^2.0.6",
"axios": "^1.6.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.2",
"framer-motion": "^11.13.3",
"iron-session": "^8.0.4",
"next": "14.2.16",
"next-auth": "^5.0.0-beta.25",
"pino-pretty": "^13.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.1",
"siwe": "^2.3.2",
"viem": "2.x",
"wagmi": "^2.13.5",
"yarn": "^1.22.22",
"zod": "^3.24.1"
}
}