-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 969 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 969 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
{
"name": "blockchain-example",
"version": "0.1.0",
"description": "An example implementation of blockchain technology in NodeJS",
"main": "app.js",
"scripts": {
"start": "docker build --rm -t blockchainexample . && docker rmi -f $(docker images --filter \"dangling=true\" -q --no-trunc) && docker run -p 443:443 blockchainexample",
"prod": "docker run -d -p 443:443 blockchainexample",
"test": "echo \"No tests currently configured\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/idflores/blockchain-example.git"
},
"keywords": [
"blockchain"
],
"author": "Israel Flores <https://github.com/idflores>",
"license": "MIT",
"bugs": {
"url": "https://github.com/idflores/blockchain-example/issues"
},
"homepage": "https://github.com/idflores/blockchain-example#readme",
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"express": "^4.16.2",
"ws": "^4.0.0"
}
}