-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@hatchet-dev/typescript-quickstart",
"version": "0.0.1",
"description": "Background task orchestration & visibility for developers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"*",
"!**/*.test.js",
"!**/*.test.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/hatchet-dev/hatchet-typescrpt-quickstart.git"
},
"scripts": {
"build": "tsc && resolve-tspaths",
"exec": "npx dotenv -- ts-node -r tsconfig-paths/register --project tsconfig.json",
"example:event": "npm run exec -- src/example-event.ts",
"example:event-listen": "npm run exec -- src/example-event-with-results.ts",
"worker:simple": "npm run exec -- src/simple-worker.ts",
"manual:trigger": "npm run exec -- src/manual-trigger.ts",
"worker:dag": "npm run exec -- src/dag-worker.ts",
"worker:concurrency": "npm run exec -- src/concurrency/concurrency-worker.ts",
"event:concurrency": "npm run exec -- src/concurrency/concurrency-event.ts",
"worker:retries": "npm run exec -- ./src/retries-worker.ts",
"api": "npm run exec -- ./api.ts",
"lint:check": "npm run eslint:check && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint:check": "eslint \"src/**/*.ts\"",
"eslint:fix": "eslint \"src/**/*.ts\" --fix",
"prettier:check": "prettier \"src/**/*.ts\" --list-different",
"prettier:fix": "prettier \"src/**/*.ts\" --write"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-unused-imports": "^3.2.0",
"grpc-tools": "^1.12.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"resolve-tspaths": "^0.8.19",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"ts-proto": "^1.181.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@hatchet-dev/typescript-sdk": "^0.10.0"
}
}