-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.59 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "s1m-monorepo-starter",
"version": "0.1.7",
"license": "MIT",
"author": "Simon Phumin Schweikert",
"bugs": {
"url": "https://github.com/simonphumin/s1m-monorepo-starter/issues"
},
"scripts": {
"start": "nx run admin:serve:development",
"api": "nx run api:serve:development",
"build": "nx run admin:build:production",
"test": "nx run admin:test",
"lint": "nx run admin:lint",
"e2e": "nx run admin:e2e",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular-architects/module-federation": "18.0.6",
"@angular/animations": "19.0.3",
"@angular/cdk": "19.0.2",
"@angular/common": "19.0.3",
"@angular/compiler": "19.0.3",
"@angular/core": "19.0.3",
"@angular/forms": "19.0.3",
"@angular/material": "^19.0.2",
"@angular/platform-browser": "19.0.3",
"@angular/platform-browser-dynamic": "19.0.3",
"@angular/platform-server": "19.0.3",
"@angular/router": "19.0.3",
"@angular/ssr": "19.0.4",
"reflect-metadata": "0.2.2",
"rxjs": "~7.8.1",
"tslib": "2.8.1",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.4",
"@angular-devkit/core": "19.0.4",
"@angular-devkit/schematics": "19.0.4",
"@angular-eslint/eslint-plugin": "19.0.1",
"@angular-eslint/eslint-plugin-template": "19.0.1",
"@angular-eslint/template-parser": "19.0.1",
"@angular/cli": "~19.0.4",
"@angular/compiler-cli": "19.0.3",
"@angular/language-service": "19.0.3",
"@cucumber/cucumber": "11.1.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "~9.16.0",
"@nestjs/common": "10.4.13",
"@nestjs/core": "10.4.13",
"@nestjs/platform-express": "10.4.13",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "10.4.13",
"@ngrx/store": "18.1.1",
"@nx/angular": "20.2.0",
"@nx/devkit": "20.2.0",
"@nx/eslint": "20.2.0",
"@nx/eslint-plugin": "20.2.0",
"@nx/jest": "20.2.0",
"@nx/js": "20.2.0",
"@nx/nest": "20.2.0",
"@nx/node": "20.2.0",
"@nx/playwright": "20.2.0",
"@nx/web": "20.2.0",
"@nx/webpack": "20.2.0",
"@nx/workspace": "20.2.0",
"@playwright/test": "1.49.0",
"@schematics/angular": "19.0.4",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.0",
"@swc/helpers": "~0.5.15",
"@types/aws-lambda": "^8.10.146",
"@types/aws-serverless-express": "^3.3.10",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@typescript-eslint/utils": "^8.17.0",
"angular-eslint": "^19.0.1",
"autoprefixer": "^10.4.20",
"aws-lambda": "^1.0.7",
"aws-serverless-express": "^3.4.0",
"axios": "^1.7.9",
"dotenv": "16.4.7",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ngrx": "2.1.4",
"eslint-plugin-playwright": "^2.1.0",
"express": "^4.21.2",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jest-preset-angular": "14.4.2",
"jsonc-eslint-parser": "^2.4.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"nx": "20.2.0",
"playwright": "^1.49.0",
"playwright-bdd": "^7.5.0",
"postcss": "^8.4.49",
"prettier": "3.4.2",
"serverless": "^4.4.14",
"serverless-layers": "^2.8.5",
"serverless-offline": "^14.3.4",
"serverless-plugin-typescript": "^2.1.5",
"start-server-and-test": "2.0.8",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.17.0"
}
}