-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.56 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
{
"name": "create-ether-dapp",
"description": "A template for building Full-Stack Blockchain Dapps using Next.js (React), TypeScript, Tailwind CSS, Hardhat, Solidity, and many more!",
"version": "1.1.65",
"author": "Adrian Delgado",
"license": "MIT",
"bin": "./bin/index.js",
"main": "./bin/index.js",
"repository": {
"name": "adriandelgg/create-ether-dapp",
"type": "git",
"url": "https://github.com/adriandelgg/create-ether-dapp.git"
},
"bugs": {
"url": "https://github.com/adriandelgg/create-ether-dapp/issues"
},
"homepage": "https://github.com/adriandelgg/create-ether-dapp#readme",
"scripts": {
"dev": "concurrently \"[ -d hardhat ] && cd ./hardhat && npx hardhat node && cd ..\" \"[ -d frontend ] && cd ./frontend && yarn dev && cd ..\" \"[ -d backend ] && cd ./backend && echo 'Please enable MongoDB server (mongod)' && yarn dev\"",
"hardhat": "cd ./hardhat && npx hardhat node",
"frontend": "cd ./frontend && yarn dev",
"backend": "cd ./backend && yarn dev",
"installdeps": "concurrently \"[ -d backend ] && cd backend && yarn install\" \"[ -d frontend ] && cd frontend && yarn install\" \"[ -d hardhat ] && cd hardhat && yarn install\"",
"postinstall": "concurrently \"[ -d backend ] && cd backend && yarn install\" \"[ -d frontend ] && cd frontend && yarn install\" \"[ -d hardhat ] && cd hardhat && yarn install\" \"find . -type f -name .example.env -execdir mv {} .env ';'\""
},
"devDependencies": {
"concurrently": "^6.2.1",
"husky": "^7.0.4"
},
"keywords": [
"ethers",
"ethereum",
"react",
"web3",
"typescript",
"hardhat"
]
}