-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.56 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
{
"name": "ngrx-set-ws",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"coverage": "ng test --code-coverage --browsers ChromeHeadlessCI",
"\n LINT SCRIPTS:": "",
"eslint": "npx eslint --max-warnings=0 \"./**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"htmllint": "npx linthtml **/*.html",
"lint": "ng lint",
"lint:fix": "npm run htmllint && npm run stylelint:fix && npm run eslint:fix && npm run prettier:write",
"prettier": "npx prettier --ignore-unknown .",
"prettier:write": "npm run prettier -- --write",
"stylelint": "npx stylelint \"**/*.{css,scss,sass}\"",
"stylelint:fix": "npm run stylelint -- --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.1",
"@angular/common": "^16.2.1",
"@angular/compiler": "^16.2.1",
"@angular/core": "^16.2.1",
"@angular/forms": "^16.2.1",
"@angular/platform-browser": "^16.2.1",
"@angular/platform-browser-dynamic": "^16.2.1",
"@angular/router": "^16.2.1",
"@ngrx/effects": "^16.2.0",
"@ngrx/store": "^16.2.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "^0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular-eslint/builder": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular-eslint/eslint-plugin-template": "16.2.0",
"@angular-eslint/schematics": "16.2.0",
"@angular-eslint/template-parser": "16.2.0",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "^16.2.1",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.1",
"@eslint-community/eslint-plugin-eslint-comments": "^4.1.0",
"@linthtml/linthtml": "^0.9.5",
"@testing-library/jasmine-dom": "^1.3.3",
"@types/jasmine": "~4.3.5",
"@types/karma": "^6.3.4",
"@types/karma-chrome-launcher": "^3.1.1",
"@types/karma-coverage": "^2.0.1",
"@types/karma-jasmine": "^4.0.2",
"@types/karma-jasmine-html-reporter": "^1.7.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "46.8.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-rxjs-angular": "^2.0.1",
"eslint-plugin-testing-library": "^6.0.0",
"expect-type": "^0.16.0",
"git-pull-run": "^1.4.0",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"jasmine-core": "^5.1.0",
"jasmine-marbles": "^0.9.2",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^14.0.0",
"ng-mocks": "^14.11.0",
"ng-packagr": "^16.2.0",
"prettier": "^3.0.2",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-sort-imports": "^1.7.2",
"stylelint": "15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"tsd": "^0.29.0",
"typescript": "^5.1.6"
}
}