-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.34 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.34 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
{
"name": "angular-clean-architecture",
"version": "0.0.0",
"author": {
"name": "Elodie TURLIER",
"email": "elodie.turlier@gmail.com"
},
"scripts": {
"ng": "ng",
"start": "npm run concat-translations && ng serve --proxy-config proxy.config.json",
"start:mock": "npm run concat-translations && ng serve --configuration=mock",
"build": "npm run concat-translations && ng build",
"watch": "npm run concat-translations && ng build --watch --configuration development",
"test": "jest",
"init": "npm run clean-install && npm run clean-install-schematics && npm run concat-translations",
"clean-install": "ng cache clean && npm ci",
"clean-install-schematics": "cd ./custom-schematics && ng cache clean && npm ci && npm run build && cd ..",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "npm run pretty & npm run lint:fix",
"pretty": "prettier --write src",
"concat-translations": "node src/config/translation/concat-translations.js"
},
"private": true,
"dependencies": {
"@angular/animations": "19.0.5",
"@angular/cdk": "19.0.4",
"@angular/common": "19.0.5",
"@angular/compiler": "19.0.5",
"@angular/core": "19.0.5",
"@angular/forms": "19.0.5",
"@angular/material": "19.0.4",
"@angular/platform-browser": "19.0.5",
"@angular/platform-browser-dynamic": "19.0.5",
"@angular/router": "19.0.5",
"@ngx-translate/core": "16.0.4",
"@ngx-translate/http-loader": "16.0.1",
"rxjs": "7.8.1",
"tslib": "2.6.3",
"urijs": "1.19.11",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.6",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "19.0.6",
"@angular/compiler-cli": "19.0.5",
"@types/jest": "29.5.14",
"@types/urijs": "1.19.25",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-preset-angular": "14.4.2",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}