forked from dapr/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 852 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "dapr-client-example-http-pubsub",
"version": "1.0.0",
"description": "An example utilizing the Dapr JS SDK",
"main": "index.js",
"private": true,
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"start:dev": "npm run build && nodemon --ext \".ts,.js\" --watch \"./src\" --exec \"ts-node ./src/index.ts\"",
"start:dapr": "dapr run --app-id example-http-pubsub --app-protocol http --app-port 50001 --dapr-http-port 50000 --components-path ./components npm run start"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"dapr-client": "file:../../../build",
"@types/node": "^15.3.0",
"google-protobuf": "^3.17.0"
}
}