-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
{
"name": "@nest-dapr/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "bin/start.sh",
"build": "rm -rf dist && nx build nest-dapr",
"prepush": "pnpm run build && cd dist/libs/nest-dapr && pnpm pack",
"push": "cd ./dist/libs/nest-dapr && pnpm publish --access public ./*.tgz"
},
"description": "NestJS module for Dapr with a reference application",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MrDiggles2/nest-dapr.git"
},
"bugs": {
"url": "https://github.com/MrDiggles2/nest-dapr/issues"
},
"homepage": "https://github.com/MrDiggles2/nest-dapr#readme",
"keywords": [
"dapr",
"nest",
"nestjs",
"typescript"
],
"packageManager": "pnpm@9.7.1",
"private": true,
"devDependencies": {
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/eslint": "19.7.1",
"@nx/eslint-plugin": "19.7.1",
"@nx/jest": "19.7.1",
"@nx/js": "19.7.1",
"@nx/nest": "^19.7.1",
"@nx/node": "19.7.1",
"@nx/web": "19.7.1",
"@nx/webpack": "19.7.1",
"@nx/workspace": "19.7.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"dotenv-load": "^3.0.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nodemon": "^3.1.4",
"nx": "19.7.1",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.5.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@dapr/dapr": "^3.4.0",
"@mrdiggles2/nest-dapr": "^0.2.9",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"axios": "^1.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"tslib": "^2.3.0"
}
}