-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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": "nx-package-test",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"package:create": "node tools/scripts/package-create.mjs",
"package:remove": "node tools/scripts/package-remove.mjs"
},
"nx": {
"includedScripts": [
"package:create",
"package:remove"
]
},
"private": true,
"workspaces": [
"libs/*"
],
"dependencies": {
"@aws-sdk/client-s3": "3.750.0",
"@nestjs/common": "10.4.15",
"@nestjs/config": "3.3.0",
"@nestjs/core": "10.4.15",
"@nestjs/platform-express": "10.4.15",
"@swc/helpers": "0.5.15",
"nest-winston": "1.10.2",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"winston": "3.17.0"
},
"devDependencies": {
"@anolilab/multi-semantic-release": "1.1.10",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "10.4.15",
"@nx/devkit": "19.8.14",
"@nx/eslint": "19.8.14",
"@nx/eslint-plugin": "19.8.14",
"@nx/jest": "19.8.14",
"@nx/js": "19.8.14",
"@nx/nest": "19.8.14",
"@nx/node": "19.8.14",
"@nx/plugin": "19.8.14",
"@nx/webpack": "19.8.14",
"@nx/workspace": "19.8.14",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.18",
"@types/jest": "29.5.14",
"@types/node": "22.13.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "48.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-mocks-http": "1.16.2",
"nx": "19.8.14",
"prettier": "2.8.8",
"semantic-release": "24.2.3",
"semantic-release-jira-notes": "4.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"yaml": "2.7.0"
}
}