mirror of https://github.com/dapr/quickstarts.git
18 lines
478 B
JSON
18 lines
478 B
JSON
{
|
|
"name": "order-processor",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"start:dapr": "dapr run --app-port 5001 --app-id order-processing --app-protocol http --dapr-http-port 3501 --components-path ../../../components -- npm run start"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dapr-client": "^2.0.1"
|
|
}
|
|
}
|