Files
sample-node-api/package.json
Nakul Manchanda 105fd86f03 made param default, https optional
Signed-off-by: Nakul Manchanda <nakul.manchanda@ibm.com>
2020-08-07 00:25:43 -05:00

27 lines
691 B
JSON

{
"name": "sample-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.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": "EPL-2.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.16.4",
"swagger-ui-express": "^4.1.4",
"yargs": "^8.0.2"
},
"devDependencies": {
"nodemon": "^2.0.4",
"mkdirp": "^1.0.3",
"node-fetch": "^2.3.0",
"rimraf": "^3.0.2"
}
}