Files
getting-started/nodejs/nodejs-backend-admin-feature-flag-launchdarkly/package.json
Arpendu Kumar Garai 093221423e Feature Flags in Node.js Backend with LaunchDarkly (#204)
* nodejs-launchdarkly

* segregating code examples

* refactoring the code sections

* refactor directory name

* minor changes

* addressed review comments

* review comments

* review comments

Co-authored-by: Arpendu Kumar Garai <Arpendu.KumarGarai@microfocus.com>
2022-10-11 06:49:21 +11:00

27 lines
709 B
JSON

{
"name": "nodejs-backend-feature-flag-launchdarkly",
"version": "1.0.0",
"description": "Feature Flags in Node.js backend server with LaunchDarkly",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"bootstrap": "node bootstrap.js",
"dynamic": "node dynamic_logging.js",
"rateLimiter": "node rate_limiter.js",
"cron": "node cron_job.js"
},
"author": "Arpendu Kumar Garai",
"license": "ISC",
"dependencies": {
"chalk": "4.1.2",
"cors": "^2.8.5",
"cron": "^2.1.0",
"date-fns": "^2.28.0",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"launchdarkly-node-server-sdk": "^6.4.2",
"lodash": "^4.17.21"
}
}