forked from KurtzL/nestjs-temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.39 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nestjs-temporal",
"version": "1.0.1",
"description": "temporal for nestjs framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"postinstall": "npm run build",
"format": "prettier --write **/*.{ts,json}",
"lint": "eslint lib --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it",
"sample-app": "ts-node --require tsconfig-paths/register --project sample/tsconfig.json sample/main.ts",
"test": "jest --detectOpenHandles --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --coverage --runInBand"
},
"author": "zegue <[email protected]>",
"license": "ISC",
"lint-staged": {
"*.{ts}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.4",
"sort-package-json": "^1.54.0",
"@temporalio/activity": "^1.4.0",
"@temporalio/client": "^1.4.0",
"@temporalio/common": "^1.4.0",
"@temporalio/worker": "^1.4.0",
"@temporalio/workflow": "^1.4.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@nestjs/common": ">=6.10.11",
"@nestjs/core": ">=6.10.11",
"@temporalio/activity": "^1.4.0",
"@temporalio/client": "^1.4.0",
"@temporalio/common": "^1.4.0",
"@temporalio/worker": "^1.4.0",
"@temporalio/workflow": "^1.4.0"
},
"dependencies": {
"release-it": "^15.5.0"
}
}