forked from erdkse/adminlte-3-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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
{
"name": "adminlte",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "ng serve",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"update": "ng update --force @angular/cli @angular/core",
"postinstall": "ngcc"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && ng lint && lint-staged"
}
},
"dependencies": {
"@angular/animations": "14.0.0",
"@angular/common": "14.0.0",
"@angular/compiler": "14.0.0",
"@angular/core": "14.0.0",
"@angular/forms": "14.0.0",
"@angular/localize": "14.0.0",
"@angular/platform-browser": "14.0.0",
"@angular/platform-browser-dynamic": "14.0.0",
"@angular/router": "14.0.0",
"@ngrx/store": "14.0.0-beta.0",
"bootstrap": "4.6.1",
"core-js": "3.8.0",
"gatekeeper-client-sdk": "0.4.2",
"luxon": "2.4.0",
"ngx-toastr": "14.3.0",
"process": "0.11.10",
"rxjs": "6.6.7",
"tslib": "2.4.0",
"uuid": "8.3.2",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.0",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "13.3.7",
"@angular/compiler-cli": "14.0.0",
"@angular/language-service": "14.0.0",
"@types/jasmine": "~4.0.3",
"@types/jasminewd2": "2.0.10",
"@types/node": "17.0.40",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"admin-lte": "3.2.0",
"eslint": "8.1.0",
"fs-web": "1.0.1",
"husky": "8.0.1",
"jasmine-core": "~4.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "6.3.20",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "~5.0.1",
"karma-jasmine-html-reporter": "2.0.0",
"lint-staged": "13.0.0",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"protractor": "7.0.0",
"ts-node": "10.8.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.7.3"
}
}