mirror of https://github.com/dapr/quickstarts.git
22 lines
516 B
JSON
22 lines
516 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-id checkout --app-protocol http --dapr-http-port 3500 -- npm run start"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@dapr/dapr": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.8.0",
|
|
"eslint-plugin-react": "^7.28.0"
|
|
}
|
|
}
|