Skip to content

Instantly share code, notes, and snippets.

@sami-abdul
Last active March 14, 2019 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sami-abdul/8aff9b5f34991860ecc1e190cd943d6e to your computer and use it in GitHub Desktop.
Save sami-abdul/8aff9b5f34991860ecc1e190cd943d6e to your computer and use it in GitHub Desktop.
first-network/package.json
{
"name": "fisr-network-chaincode",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --fix -c tslint.json './src/**/*.ts'",
"test": "npm run lint && mocha -r ts-node/register tests/**/*.spec.ts --reporter spec",
"test:w": "npm run lint && mocha -r ts-node/register tests/**/*.spec.ts --reporter spec --watch app/**/*.spec.ts --watch-extensions ts",
"clean": "rm -rf dist",
"start": "node dist/index.js"
},
"author": "xord",
"dependencies": {
"@theledger/fabric-chaincode-utils": "^3.0.2",
"@types/lodash": "^4.14.104",
"fabric-shim": "^1.2.0",
"lodash": "^4.17.5",
"winston": "^2.4.0",
"yup": "^0.24.1"
},
"devDependencies": {
"@theledger/fabric-mock-stub": "^2.0.1",
"@theledger/fabric-shim-crypto-types": "^1.0.4",
"@theledger/fabric-shim-types": "^2.0.7",
"@types/express-serve-static-core": "4.0.49",
"@types/node": "^8.5.8",
"@types/winston": "^2.3.8",
"@types/yup": "^0.24.1",
"nodemon": "^1.12.1",
"ts-node": "^5.0.1",
"tslint": "4.5.1",
"typescript": "^2.6.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment