forked from restatedev/tour-of-restate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.38 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
{
"name": "@restatedev/tour-of-restate-typescript",
"version": "0.0.1",
"description": "Tour of Restate's key features with the Typescript handler API",
"type": "commonjs",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc --noEmitOnError",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\"",
"verify": "npm run format -- --check && npm run lint && npm run build",
"app": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/app/app.ts",
"part1": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part1/app.ts",
"part2": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part2/app.ts",
"part3": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part3/app.ts",
"part4": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part4/app.ts"
},
"author": "Restate Developers",
"email": "[email protected]",
"dependencies": {
"@restatedev/restate-sdk": "0.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"esbuild": "^0.19.0",
"eslint": "^8.46.0",
"prettier": "^3.0.1",
"ts-node-dev": "^2.0.0"
}
}