-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.01 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
71
72
73
74
75
76
77
{
"name": "@trigger/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run-many -t serve -p auth jobs executor"
},
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"_moduleAliases": {
"@trigger/grpc": "dist/libs/grpc/main",
"@trigger/graphql": "dist/libs/graphql/main",
"@trigger/pulsar": "dist/libs/pulsar/main",
"@trigger/nestjs": "dist/libs/nestjs/main",
"@trigger/prisma": "dist/libs/prisma/main"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/microservices": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"axios": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"module-alias": "^2.2.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nestjs/schematics": "^11.0.7",
"@nestjs/testing": "^11.1.6",
"@nx/eslint": "21.1.2",
"@nx/eslint-plugin": "21.1.2",
"@nx/jest": "21.1.2",
"@nx/js": "21.1.2",
"@nx/nest": "21.1.2",
"@nx/node": "21.1.2",
"@nx/web": "21.1.2",
"@nx/webpack": "21.1.2",
"@nx/workspace": "21.1.2",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^16.0.0",
"nodemon": "^3.1.10",
"nx": "21.1.2",
"prettier": "^2.6.2",
"prisma": "6.15.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,mjs,cjs}": [
"npm run lint --fix"
]
}
}