-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "dapp-tutorial-monorepo-",
"private": true,
"version": "0.0.1",
"description": "Election smart contract and companion dApp",
"workspaces": {
"packages": [
"interface",
"smart-contracts"
]
},
"devDependencies": {
"gh-pages": "^2.0.1",
"lerna": "^3.1.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"deploy": "cd interface && yarn deploy",
"migrate": "cd smart-contracts && yarn migrate",
"start": "cd interface && yarn start",
"test": "cd smart-contracts && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mainframehq/dapp-tutorial.git"
},
"author": "Carl Youngblood",
"license": "MIT",
"bugs": {
"url": "https://github.com/mainframehq/dapp-tutorial/issues"
},
"homepage": "https://github.com/mainframehq/dapp-tutorial#readme"
}