-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.11 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
{
"name": "mintable-erc-20-dapp",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"description": "This mono repository consists of a decentralized application to operate with a mintable ERC-20 token.",
"scripts": {
"node": "npm run node --workspace=hardhat-env",
"test-hardhat": "npm run test --workspace=hardhat-env",
"compile-share-deploy": "npm run compile --workspace=hardhat-env && npm run share --workspace=hardhat-env && npm run deploy --workspace=hardhat-env",
"mint": "npm run mint --workspace=hardhat-env",
"start-app": "npm start --workspace=react-app",
"test-app": "npm run test --workspace=react-app",
"type-check": "npm run type-check --workspaces",
"format": "npm run format --workspaces",
"lint": "npm run lint --workspaces"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertobas/mintable-erc-20-dapp.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/albertobas/mintable-erc-20-dapp/issues"
},
"homepage": "https://github.com/albertobas/mintable-erc-20-dapp#readme",
"workspaces": [
"hardhat-env",
"react-app"
]
}