forked from stuartaccent/angular-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.0",
"@angular/cdk": "~19.2.1",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/forms": "^19.2.0",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/router": "^19.2.0",
"@ng-icons/core": "^30.3.0",
"@ng-icons/lucide": "^30.3.0",
"rxjs": "~7.8.2",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.0",
"@angular/cli": "~19.2.0",
"@angular/compiler-cli": "^19.2.0",
"@tailwindcss/postcss": "^4.0.9",
"@testing-library/angular": "^17.3.6",
"@testing-library/dom": "^10.4.0",
"@types/jest": "^29.5.14",
"angular-eslint": "19.2.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.9",
"typescript": "~5.6.3",
"typescript-eslint": "8.26.0"
}
}