-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "nestjs-temporal",
"version": "2.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",
"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",
"test": "jest --detectOpenHandles --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --coverage --runInBand"
},
"author": "zegue <[email protected]>",
"license": "MIT",
"lint-staged": {
"*.{ts}": [
"prettier --write"
]
},
"engines" : {
"node" : ">=12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/platform-express": "^10.1.3",
"@nestjs/testing": "^10.1.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"@temporalio/activity": "^1.8.3",
"@temporalio/client": "^1.8.3",
"@temporalio/common": "^1.8.3",
"@temporalio/worker": "^1.8.3",
"@temporalio/workflow": "^1.8.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@temporalio/activity": "^1.8.3",
"@temporalio/client": "^1.8.3",
"@temporalio/common": "^1.8.3",
"@temporalio/worker": "^1.8.3",
"@temporalio/workflow": "^1.8.3"
}
}