Skip to content

Commit 6ed6116

Browse files
authored
chore(deps): update nodemon and node-fetch to fix dependabot alerts (#405)
* Update node-fetch and fix examples; Signed-off-by: Shubham Sharma <[email protected]> * Update nodemon Signed-off-by: Shubham Sharma <[email protected]> * Revert husky Signed-off-by: Shubham Sharma <[email protected]> * Fix lint Signed-off-by: Shubham Sharma <[email protected]> Signed-off-by: Shubham Sharma <[email protected]>
1 parent 5af7265 commit 6ed6116

File tree

16 files changed

+2807
-8123
lines changed

16 files changed

+2807
-8123
lines changed

examples/configuration/package-lock.json

Lines changed: 98 additions & 155 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "dapr-example-config",
3+
"version": "1.0.0",
4+
"description": "An example utilizing the Dapr JS SDK to show configuration API usage",
5+
"main": "dist/index.js",
6+
"private": true,
7+
"scripts": {
8+
"build": "rimraf ./dist && tsc",
9+
"start": "npm run build && node dist/index.js",
10+
"start:dapr-grpc": "dapr run --app-id example-config --app-port 50051 --app-protocol grpc npm run start",
11+
"start:dapr-http": "dapr run --app-id example-config --app-port 50051 --app-protocol http npm run start"
12+
},
13+
"keywords": [],
14+
"license": "ISC",
15+
"devDependencies": {
16+
"rimraf": "^3.0.2",
17+
"ts-node": "^9.1.1",
18+
"typescript": "^4.2.4"
19+
},
20+
"dependencies": {
21+
"@dapr/dapr": "file:../../build",
22+
"@types/node": "^15.3.0"
23+
}
24+
}

0 commit comments

Comments
 (0)