forked from targomo/typescript-challenge-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
{
"name": "typescript-challenge-frontend",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve": "ng serve",
"build": "ng build",
"test": "jest",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"e2e": "ng e2e",
"prettier": "prettier --write --config .prettierrc.json 'src/**/*{.js,.ts,.html,.scss}'"
},
"private": true,
"dependencies": {
"@angular/animations": "~18.2.4",
"@angular/cdk": "^18.2.4",
"@angular/common": "~18.2.4",
"@angular/compiler": "~18.2.4",
"@angular/core": "~18.2.4",
"@angular/forms": "~18.2.4",
"@angular/material": "^18.2.4",
"@angular/platform-browser": "~18.2.4",
"@angular/platform-browser-dynamic": "~18.2.4",
"@angular/router": "~18.2.4",
"@ngrx/effects": "^18.0.2",
"@ngrx/entity": "^18.0.2",
"@ngrx/router-store": "^18.0.2",
"@ngrx/store": "^18.0.2",
"maplibre-gl": "^4.7.0",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^18.0.0",
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "~18.2.4",
"@angular-eslint/builder": "^18.3.0",
"@angular-eslint/eslint-plugin": "^18.3.0",
"@angular-eslint/eslint-plugin-template": "^18.3.0",
"@angular-eslint/schematics": "^18.3.0",
"@angular-eslint/template-parser": "^18.3.0",
"@angular/cli": "~18.2.4",
"@angular/compiler-cli": "~18.2.4",
"@faker-js/faker": "^9.0.1",
"@ngrx/eslint-plugin": "^18.0.2",
"@types/jest": "^29.5.13",
"@types/mapbox-gl": "^2.1.1",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"codelyzer": "^6.0.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.9.0",
"eslint-plugin-change-detection-strategy": "^0.1.5",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-marbles": "^3.0.6",
"jest-preset-angular": "^14.2.2",
"prettier": "^3.3.3",
"ts-node": "~10.9.2",
"typescript": "~5.5.4"
}
}