forked from dapr/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 3.18 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "dapr-client",
"version": "2.1.0",
"description": "The official Dapr (https://dapr.io) SDK for Node.js",
"types": "http/index.d.ts",
"scripts": {
"test": "npm run test:unit:all && npm run test:e2e:all",
"test:load": "jest --runInBand --detectOpenHandles",
"test:load:http": "TEST_SECRET_1=secret_val_1 TEST_SECRET_2=secret_val_2 dapr run --app-id test-suite --app-protocol http --app-port 50001 --dapr-http-port 50000 --components-path ./test/components npm run test:load 'test/load'",
"test:e2e": "jest --runInBand --detectOpenHandles",
"test:e2e:all": "npm run test:e2e:grpc:main && npm run test:e2e:http:main && npm run test:e2e:http:actors",
"test:e2e:grpc:main": "TEST_SECRET_1=secret_val_1 TEST_SECRET_2=secret_val_2 dapr run --app-id test-suite --app-protocol grpc --app-port 50001 --dapr-grpc-port 50000 --components-path ./test/components npm run test:e2e 'test/e2e/main.grpc.test.ts'",
"test:e2e:http:main": "TEST_SECRET_1=secret_val_1 TEST_SECRET_2=secret_val_2 dapr run --app-id test-suite --app-protocol http --app-port 50001 --dapr-http-port 50000 --components-path ./test/components npm run test:e2e 'test/e2e/main.http.test.ts'",
"test:e2e:http:actors": "dapr run --app-id test-suite --app-protocol http --app-port 50001 --dapr-http-port 50000 --components-path ./test/components npm run test:e2e 'test/e2e/actors.http.test.ts'",
"test:unit": "jest --runInBand --detectOpenHandles",
"test:unit:all": "npm run test:unit:main && npm run test:unit:actors && npm run test:unit:utils",
"test:unit:main": "NODE_ENV=test npm run test:unit 'test/unit/main/.*\\.test\\.ts'",
"test:unit:actors": "NODE_ENV=test npm run test:unit 'test/unit/actor/.*\\.test\\.ts'",
"test:unit:utils": "NODE_ENV=test npm run test:unit 'test/unit/utils/.*\\.test\\.ts'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "./scripts/build.sh",
"start:dev": "npm run build && nodemon --ext \".ts,.js\" --watch \"./src\" --exec \"npm run build\""
},
"keywords": [],
"author": "Xavier Geerinck",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.3.7",
"@js-temporal/polyfill": "^0.3.0",
"body-parser": "^1.19.0",
"google-protobuf": "^3.18.0",
"http-terminator": "^3.0.4",
"node-fetch": "^2.6.1",
"restana": "^4.9.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.5.8",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-plugin-header": "^3.1.1",
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.11.2",
"jest": "^27.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/dapr/js-sdk.git",
"directory": ""
}
}