-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.6 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
{
"name": "ng-oauth",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run lint:prettier && npm run lint:lint && npm run test && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test --watch=false",
"lint:prettier": "cross-env prettier --check \"**/*.{ts,js,md,html,scss}\"",
"format:prettier": "cross-env prettier --write \"**/*.{ts,js,md,html,scss}\"",
"lint:lint": "ng lint",
"format:lint": "ng lint --fix",
"lint:styles": "stylelint \"src/app/**/*.scss\"",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.2",
"@angular/common": "^16.1.2",
"@angular/compiler": "^16.1.2",
"@angular/core": "^16.1.2",
"@angular/forms": "^16.1.2",
"@angular/platform-browser": "^16.1.2",
"@angular/platform-browser-dynamic": "^16.1.2",
"@angular/router": "^16.1.2",
"@ppwcode/js-ts-oddsandends": "^1.4.2",
"@ppwcode/ng-testing": "^5.0.0",
"angular-oauth2-oidc": "^15.0.1",
"angular-oauth2-oidc-jwks": "^15.0.1",
"rxjs": "~6.6.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.1",
"@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-ru/common": "15.311.0",
"@angular-ru/eslint-config-enterprise": "12.4.1",
"@angular-ru/prettier": "12.2.1",
"@angular-ru/typescript": "12.4.1",
"@angular/cli": "^16.1.1",
"@angular/compiler-cli": "^16.1.2",
"@ngneat/spectator": "^8.0.4",
"@ppwcode/angular-schematics": "3.2.0",
"@types/jasmine": "~3.8.0",
"@types/jasminewd2": "2.0.10",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"cross-env": "7.0.3",
"eslint": "^8.39.0",
"git-branch-is": "4.0.0",
"husky": "4.3.0",
"jasmine-core": "^3.99.1",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^16.1.0",
"prettier": "2.3.2",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-push": "if git-branch-is -q master; then npm run lint:prettier && npm run lint:lint && npm run lint:styles; fi"
}
},
"prettier": "@angular-ru/prettier"
}