-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "dapp-example",
"version": "1.0.0",
"description": "dApp Example Template",
"main": "index.js",
"scripts": {
"print-stuff": "echo $TEST_WALLET_KEY",
"start-etn": "node launch.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "MexicanAce",
"license": "ISC",
"type": "module",
"dependencies": {
"ganache": "^7.9.2",
"ganache-cli": "^6.12.2",
"solc": "^0.8.26",
"truffle": "^5.11.5",
"web3": "^4.10.0"
},
"stackblitz": {
"installDependencies": true,
"startCommand": "cd backend/ && npm i && yarn compile && yarn start-etn2 && yarn deploy && cd ../frontend && npm install && open http://localhost:3000 && npm run dev",
"env": {
"TEST_WALLET_KEY": "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"TEST_WALLET_ADDRESS": "0x36615Cf349d7F6344891B1e7CA7C72883F5dc049",
"NODE_PORT": "8545"
}
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.2",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.5",
"chai": "^5.1.1",
"chai-ethers": "^0.0.1",
"dotenv": "^16.4.5",
"ethers": "6.9.2",
"hardhat": "^2.22.9",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}