-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.54 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
{
"name": "eth-scratch3",
"version": "0.0.1",
"description": "Scratch 3 extensions for common Ethereum contracts",
"main": "index.js",
"scripts": {
"buildBaseImage": "docker build -t registry.heroku.com/eth-scratch3/base:latest --target base .",
"bashBaseImage": "docker run -it registry.heroku.com/eth-scratch3/base:latest bash",
"buildWebImage": "docker build -t registry.heroku.com/eth-scratch3/web:latest --target web .",
"bashWebImage": "docker run -it registry.heroku.com/eth-scratch3/web:latest sh",
"runWebImage": "docker run -p 8601:8601 -e PORT=8601 registry.heroku.com/eth-scratch3/web:latest",
"pushWebImage": "docker push registry.heroku.com/eth-scratch3/web:latest",
"deployLocal": "truffle deploy --reset",
"deployRopsten": "truffle deploy --reset --network ropsten",
"analyze": "npx source-map-explorer 'build/*.js'",
"test": "./node_modules/.bin/jest --forceExit --detectOpenHandles --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naddison36/eth-scratch3.git"
},
"authors": [
"Nick Addison"
],
"license": "BSD-3-Clause",
"dependencies": {
"events": "^3.0.0",
"minilog": "^3.1.0",
"scratch-gui": "git+https://github.com/LLK/scratch-gui.git",
"verror": "^1.10.0"
},
"devDependencies": {
"jest": "^24.7.1",
"markdown-toc": "^1.2.0",
"openzeppelin-solidity": "^2.2.0",
"solc": "^0.5.8",
"source-map-explorer": "^1.8.0",
"truffle": "^5.0.17",
"truffle-hdwallet-provider": "^1.0.6",
"web3": "^0.20.7"
}
}