-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
84 lines (84 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "angular-ionic-ngxs-movies",
"version": "0.0.0",
"author": "Adrián Brito Pacheco",
"description": "This project show how to use NGXS in Ionic 4 and Angular APP.",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"eslint": "npx eslint 'src/**/*.{ts,html}' --quiet --fix",
"format": "npx prettier 'src/**/*.{ts,html,css,scss}' --write",
"e2e": "ng e2e",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@abritopach/star-rating-webcomponent": "0.0.6",
"@angular/animations": "^17.0.5",
"@angular/common": "^17.0.5",
"@angular/core": "^17.0.5",
"@angular/forms": "^17.0.5",
"@angular/platform-browser": "^17.0.5",
"@angular/platform-browser-dynamic": "^17.0.5",
"@angular/router": "^17.0.5",
"@angular/service-worker": "^17.0.5",
"@capacitor/android": "^5.5.1",
"@capacitor/cli": "^5.5.1",
"@capacitor/core": "^5.5.1",
"@capacitor/ios": "^5.5.1",
"@ctrl/ngx-github-buttons": "^9.0.0",
"@ionic/angular": "^7.5.7",
"@ng-select/ng-select": "^12.0.4",
"capacitor-youtube-player": "^1.1.0",
"core-js": "^3.33.3",
"izitoast": "^1.4.0",
"rxjs": "^7.8.1",
"zone.js": "^0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.5",
"@angular-eslint/builder": "^17.1.1",
"@angular-eslint/eslint-plugin": "^17.1.1",
"@angular-eslint/eslint-plugin-template": "^17.1.1",
"@angular-eslint/schematics": "^17.1.1",
"@angular-eslint/template-parser": "^17.1.1",
"@angular/cli": "^17.0.5",
"@angular/compiler": "^17.0.5",
"@angular/compiler-cli": "^17.0.5",
"@angular/language-service": "^17.0.5",
"@ngxs/devtools-plugin": "^3.8.2",
"@ngxs/form-plugin": "^3.8.2",
"@ngxs/logger-plugin": "^3.8.2",
"@ngxs/storage-plugin": "^3.8.2",
"@ngxs/store": "^3.8.2",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"protractor": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}