update sample-node-api

Signed-off-by: Nakul Manchanda <nakul.manchanda@ibm.com>
This commit is contained in:
Nakul Manchanda
2020-02-13 13:47:42 -05:00
parent 6aa526a638
commit 26f8db6f9b
8 changed files with 482 additions and 1013 deletions

View File

@@ -4,20 +4,20 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/app.js"
"start": "node server/app.js",
"build": "npm run clean && cp -r server dist/server && cp -r bin dist/bin && cp *.yml dist && cp *.json dist && cp *.js dist && rimraf dist/package-lock.json",
"clean": "rimraf dist && mkdirp dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"assert": "^1.4.1",
"cors": "^2.8.5",
"cucumber": "^5.1.0",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"supertest": "^3.4.2",
"yargs": "^15.1.0"
"yargs": "^8.0.2"
},
"devDependencies": {
"node-fetch": "^2.3.0"
"mkdirp": "^1.0.3",
"node-fetch": "^2.3.0",
"rimraf": "^3.0.2"
}
}