forked from Splaktar/angularjs-angular-material-hybrid-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.9 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "angularjs-angular-material-hybrid-demo",
"description": "XLTS for AngularJS/Angular app in hybrid mode built with the Angular CLI",
"version": "1.2.0",
"private": true,
"scripts": {
"ng": "ng",
"pre-commit": "lint-staged",
"start": "npm run build:templates && ng serve",
"start:emulators": "firebase emulators:start",
"build:templates": "gulp templates",
"watch:templates": "gulp watch",
"build": "npm run build:templates && ng build",
"build:prod": "npm run build:templates && ng build -c production",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"lint": "ng lint",
"e2e": "playwright test",
"e2e:debug": "playwright test --project chromium --headed",
"e2e:report": " npx playwright show-report",
"test": "npm run lint && npm run e2e",
"smex": "source-map-explorer",
"deploy": "npm run build:templates && ng deploy",
"update": "ncu -u && npm install",
"prepare": "husky install && npx playwright install"
},
"dependencies": {
"@angular/animations": "16.1.2",
"@angular/cdk": "16.1.1",
"@angular/common": "16.1.2",
"@angular/compiler": "16.1.2",
"@angular/core": "16.1.2",
"@angular/fire": "^7.5.0",
"@angular/forms": "16.1.2",
"@angular/material": "16.1.1",
"@angular/platform-browser": "16.1.2",
"@angular/platform-browser-dynamic": "16.1.2",
"@angular/upgrade": "16.1.2",
"@schuchard/prettier": "^5.1.0",
"angular": "npm:@xlts.dev/angular@1.9.3",
"angular-animate": "npm:@xlts.dev/angular-animate@^1.9.3",
"angular-aria": "npm:@xlts.dev/angular-aria@^1.9.3",
"angular-material": "npm:@xlts.dev/angular-material@^1.2.4",
"angular-messages": "npm:@xlts.dev/angular-messages@^1.9.3",
"angular-sanitize": "npm:@xlts.dev/angular-sanitize@^1.9.3",
"firebase": "^9.23.0",
"ngx-toastr": "^16.0.2",
"rxfire": "^6.0.3",
"rxjs": "^7.8.0",
"tslib": "^2.4.1",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1601.0",
"@angular-devkit/build-angular": "~16.1.0",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "16.1.0",
"@angular/compiler-cli": "16.1.2",
"@angular/language-service": "16.1.2",
"@playwright/test": "^1.30.0",
"@types/angular": "^1.8.5",
"@types/angular-animate": "^1.5.11",
"@types/angular-aria": "^1.7.2",
"@types/angular-material": "^1.1.73",
"@types/angular-sanitize": "^1.8.1",
"@types/gulp": "^4.0.10",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"codelyzer": "^6.0.2",
"debug": "^4.3.4",
"eslint": "~8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-rxjs": "^5.0.2",
"firebase-tools": "^12.4.5",
"fuzzy": "^0.1.3",
"gulp": "~4.0.2",
"gulp-angular-templatecache": "~3.0.1",
"gulp-htmlmin": "~5.0.1",
"husky": "~8.0.3",
"inquirer": "^9.1.4",
"inquirer-autocomplete-prompt": "^3.0.0",
"jsonc-parser": "^3.2.0",
"lint-staged": "^13.1.0",
"npm-check-updates": "^16.10.12",
"open": "^8.4.0",
"prettier": "^2.8.3",
"rxjs-tslint-rules": "^4.34.8",
"source-map-explorer": "^2.5.3",
"ts-node": "^10.9.1",
"tsutils": "^3.21.0",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && ng lint"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write"
]
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}