-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "angular-examples",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"test:coverage": "jest --coverage",
"build:prod": "ng build --configuration production --base-href=https://danilosalve.github.io/angular-examples/",
"build:local": "ng build --configuration production",
"deploy:gh-pages": "npx angular-cli-ghpages --dir=dist/angular-examples/browser",
"serve:local": "cd dist/angular-examples/browser && npx serve",
"lint": "ng lint",
"format": "npx prettier \"src/**/*.{js,jsx,ts,tsx,html,css,scss}\" --write",
"prepare": "husky install",
"e2e": "ng e2e",
"cypress:open": "concurrently \"ng s\" \"cypress open\"",
"cypress:run": "concurrently \"ng s\" \"cypress run\""
},
"private": true,
"dependencies": {
"@angular/animations": "~20.3.16",
"@angular/common": "~20.3.16",
"@angular/compiler": "~20.3.16",
"@angular/core": "~20.3.16",
"@angular/forms": "~20.3.16",
"@angular/platform-browser": "~20.3.16",
"@angular/platform-browser-dynamic": "~20.3.16",
"@angular/router": "~20.3.16",
"@ngrx/operators": "^20.0.0",
"@ngrx/signals": "^20.0.0",
"@po-ui/ng-components": "20.12.0",
"@po-ui/ng-templates": "20.12.0",
"angular-in-memory-web-api": "^0.20.0",
"ng-event-bus": "^9.0.0",
"ngx-skeleton-loader": "^11.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-builders/jest": "^20.0.0",
"@angular-devkit/build-angular": "~20.3.14",
"@angular/cli": "~20.3.14",
"@angular/compiler-cli": "~20.3.16",
"@cypress/schematic": "^3.0.0",
"@happy-dom/jest-environment": "^17.4.7",
"@types/jasmine": "~5.1.0",
"@types/jest": "^29.5.14",
"angular-cli-ghpages": "^2.0.3",
"angular-eslint": "^20.7.0",
"concurrently": "^9.1.2",
"cypress": "^15.3.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"happy-dom": "^17.4.7",
"husky": "^8.0.0",
"jasmine-core": "~5.1.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.6.2",
"ng-mocks": "^14.15.1",
"prettier": "^3.4.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.52.0"
}
}