-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.54 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
{
"name": "angular-19-template",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "echo '🚀 Starting development server...' && ng serve",
"build": "echo '🏗️ Building project...' && ng build",
"watch": "echo '👀 Watching for changes...' && ng build --watch --configuration development",
"test": "echo '🧪 Running tests...' && jest",
"test:coverage": "echo '🧪 Running tests with coverage...' && jest --coverage",
"lint": "echo '🔍 Linting...' && eslint",
"lint-fix": "echo '🔧 Linting and fixing issues...' && eslint --fix",
"format": "echo '✨ Formatting code with Prettier...' && prettier --write .",
"clean": "echo '🧽 Cleaning up...' && rmdir /s /q node_modules && rmdir /s /q dist && del /q package-lock.json",
"prepare": "husky",
"pre-commit": "lint-staged",
"pre-push": "npm run test:coverage"
},
"lint-staged": {
"*.{js,ts,css,html}": [
"npm run format",
"npm run lint"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.0",
"@angular/common": "^19.1.0",
"@angular/compiler": "^19.1.0",
"@angular/core": "^19.1.0",
"@angular/forms": "^19.1.0",
"@angular/platform-browser": "^19.1.0",
"@angular/platform-browser-dynamic": "^19.1.0",
"@angular/router": "^19.1.0",
"@ngrx/signals": "^19.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@primeng/themes": "^19.0.5",
"primeicons": "^7.0.0",
"primelocale": "^1.5.0",
"primeng": "^19.0.5",
"rxjs": "~7.8.0",
"tailwindcss-primeui": "^0.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.1.4",
"@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.1.4",
"@angular/compiler-cli": "^19.1.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-preset-angular": "^14.5.1",
"lint-staged": "^15.4.2",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
}
}