Created
January 28, 2019 19:18
-
-
Save Jojoooo1/2e04ed6556781b56c29f8f36dd9e517a to your computer and use it in GitHub Desktop.
package-1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "codigo-rastreamento", | |
"version": "1.0.0", | |
"description": "Codigo Rastreamento chaincode implemented in node.js", | |
"engines": { | |
"node": ">=8.4.0", | |
"npm": ">=5.3.0" | |
}, | |
"scripts": { | |
"clean": "rm -rf build && mkdir build", | |
"build-server": "./node_modules/.bin/babel -d ./build ./app -s", | |
"build": "npm run clean && npm run build-server", | |
"start": "node ./build/index.js" | |
}, | |
"engine-strict": true, | |
"license": "Apache-2.0", | |
"dependencies": { | |
"fabric-shim": "1.4" | |
}, | |
"devDependencies": { | |
"babel-cli": "^6.26.0", | |
"babel-plugin-transform-object-rest-spread": "^6.26.0", | |
"babel-preset-es2015": "^6.24.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment