-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.93 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
{
"name": "ngx-toolset",
"version": "0.0.0",
"scripts": {
"start": "ng serve",
"build:api-token-interceptor": "ng b @ngx-toolset/api-token-interceptor",
"build:api-token-interceptor:watch": "npm run build:api-token-interceptor -- --watch -c development",
"build:date-interceptors": "ng b @ngx-toolset/date-interceptors",
"build:date-interceptors:watch": "npm run build:date-interceptors -- --watch -c development",
"build:template-type-checker": "ng b @ngx-toolset/template-type-checker",
"build:template-type-checker:watch": "npm run build:template-type-checker -- --watch -c development",
"test:unit:api-token-interceptor": "ng t @ngx-toolset/api-token-interceptor",
"test:unit:api-token-interceptor:no-watch": "npm run test:unit:api-token-interceptor -- --watch=false",
"test:unit:date-interceptors": "ng t @ngx-toolset/date-interceptors",
"test:unit:date-interceptors:no-watch": "npm run test:unit:date-interceptors -- --watch=false",
"test:unit:template-type-checker": "ng t @ngx-toolset/template-type-checker",
"test:unit:template-type-checker:no-watch": "npm run test:unit:template-type-checker -- --watch=false",
"lint:api-token-interceptor": "ng lint @ngx-toolset/api-token-interceptor && npx stylelint \"projects/api-token-interceptor/**/*.{css,scss}\" --quiet --allow-empty-input",
"lint:api-token-interceptor:fix": "ng lint @ngx-toolset/api-token-interceptor --fix && npx stylelint \"projects/api-token-interceptor/**/*.{css,scss}\" --quiet --allow-empty-input --fix",
"lint:date-interceptors": "ng lint @ngx-toolset/date-interceptors && npx stylelint \"projects/date-interceptors/**/*.{css,scss}\" --quiet --allow-empty-input",
"lint:date-interceptors:fix": "ng lint @ngx-toolset/date-interceptors --fix && npx stylelint \"projects/date-interceptors/**/*.{css,scss}\" --quiet --allow-empty-input --fix",
"lint:template-type-checker": "ng lint @ngx-toolset/template-type-checker && npx stylelint \"projects/template-type-checker/**/*.{css,scss}\" --quiet --allow-empty-input",
"lint:template-type-checker:fix": "ng lint @ngx-toolset/template-type-checker --fix && npx stylelint \"projects/template-type-checker/**/*.{css,scss}\" --quiet --allow-empty-input --fix"
},
"engines": {
"npm": ">=10.2.3",
"node": ">=20.9.0"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.6",
"@angular/common": "^17.0.6",
"@angular/compiler": "^17.0.6",
"@angular/core": "^17.0.6",
"@angular/forms": "^17.0.6",
"@angular/platform-browser": "^17.0.6",
"@angular/platform-browser-dynamic": "^17.0.6",
"@angular/router": "^17.0.6",
"date-fns": "^2.30.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.6",
"@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.6",
"@angular/compiler-cli": "^17.0.6",
"@ngneat/spectator": "^15.0.1",
"@types/jasmine": "~5.1.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.1",
"jasmine-core": "~5.1.1",
"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",
"ng-packagr": "^17.0.0",
"prettier": "^3.0.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^3.0.0",
"typescript": "~5.2.2"
}
}