-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.93 KB
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
{
"name": "@restatedev/node",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "turbo run _test --filter={.}...",
"_test": "vitest run",
"build": "turbo run _build --filter={.}...",
"_build": "tsc --project tsconfig.build.json",
"dev": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/zod_greeter.ts",
"object": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/object.ts",
"greeter": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/greeter.ts",
"greeter_hooks": "RESTATE_LOGGING=ERROR tsx --tsconfig ./tsconfig.json ./src/greeter_with_hooks.ts",
"greeter_http1": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/greeter_http1.ts",
"logger_context": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/logger_context.ts",
"preview_serde": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/preview_serde.ts",
"zgreeter": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/zod_greeter.ts",
"workflow": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/workflow.ts",
"workflow_client": "RESTATE_LOGGING=debug tsx --tsconfig ./tsconfig.json ./src/workflow_client.ts",
"ingress": "RESTATE_LOGGING=debug tsx ./src/ingress_client.ts",
"start": "turbo run _start --filter={.}...",
"_start": "node ./dist/zod_greeter.js",
"clean": "rm -rf dist *.tsbuildinfo .turbo",
"check:types": "turbo run _check:types --filter={.}...",
"_check:types": "tsc --noEmit --project tsconfig.build.json",
"lint": "eslint ."
},
"dependencies": {
"@restatedev/restate-sdk": "workspace:*",
"@restatedev/restate-sdk-clients": "workspace:*",
"@restatedev/restate-sdk-core": "workspace:*",
"@restatedev/restate-sdk-testcontainers": "workspace:*",
"@restatedev/restate-sdk-zod": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"testcontainers": "^11.12.0"
}
}