-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
30 lines (30 loc) · 912 Bytes
/
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
{
"name": "solidity-nextjs-starter",
"version": "2.1.0",
"description": "A starter kit for building full stack Ethereum dApps with Solidity and Next.js",
"author": "Tom Hirst <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start:contracts": "yarn workspace solidity-next-js-starter-contracts run start",
"start:app": "yarn workspace solidity-next-js-starter-app run dev"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.5",
"ethers": "^6.7.1",
"hardhat": "^2.17.3",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
}
}