-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 4.62 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
{
"name": "@davidlj95/ngx",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "ng build && ./postbuild.sh",
"commit": "pnpx @commitlint/prompt-cli",
"commitlint-edit-msg": "commitlint --verbose --edit",
"commitlint-last": "commitlint --last --verbose",
"coverage:move-to-nyc-output": "rm -rf .nyc_output && mkdir .nyc_output && cp -f $(find coverage -type f -name '*.json') .nyc_output",
"coverage:report:all": "pnpm run coverage:move-to-nyc-output && nyc report --reporter lcov --report-dir coverage",
"format": "pnpm run format:files .",
"format:check": "pnpm run format:check:files .",
"format:check:files": "prettier --check",
"format:files": "prettier --ignore-unknown --write",
"instrument-for-coverage": "./instrument-for-coverage.sh",
"lint": "pnpm run '/^lint:[\\w-]+$/'",
"lint:code": "pnpm run lint:code:files .",
"lint:code:files": "eslint --max-warnings 0",
"lint:code:files//": "☝️ lint-staged can't/shouldn't use 'ng lint'",
"lint:commit-message": "pnpm run commitlint-edit-msg",
"lint:gh-actions": "./actionlint.sh",
"lint:unused": "pnpm run '/^lint:unused:.*$/'",
"lint:unused:development": "knip",
"lint:unused:production": "knip --production --tags=-visibleForTesting",
"ngx-meta:api-documenter": "api-documenter markdown -i ./projects/ngx-meta/api-extractor -o ./projects/ngx-meta/docs/content/api",
"ngx-meta:api-extractor": "api-extractor run -c ./projects/ngx-meta/src/api-extractor.json",
"ngx-meta:api-extractor:local": "pnpm run ngx-meta:tsc:lib && pnpm run ngx-meta:api-extractor --local",
"ngx-meta:lint": "ng lint ngx-meta",
"ngx-meta:test": "ng test ngx-meta",
"ngx-meta:tsc": "pnpm run '/^ngx-meta:tsc:.*/'",
"ngx-meta:tsc:lib": "tsc -p ./projects/ngx-meta/src/tsconfig.lib.json --listEmittedFiles",
"ngx-meta:tsc:spec": "tsc -p ./projects/ngx-meta/src/tsconfig.spec.json --listEmittedFiles",
"prepare": "husky",
"semantic-release:local": "./semantic-release-local.sh",
"start:dev": "ng serve",
"test:unit": "pnpm run '/^test:unit:\\w*$/'",
"test:unit:coverage": "pnpm run '/^test:unit:\\w*:coverage$/'",
"test:unit:libs": "ng test --no-watch",
"test:unit:libs:coverage": "pnpm run test:unit:libs --code-coverage",
"test:unit:schematics": "jest",
"test:unit:schematics:coverage": "pnpm run test:unit:schematics --collect-coverage",
"update": "ng update @angular/cli @angular/core @angular-eslint/schematics",
"validate": "pnpm run '/^validate:.*/'",
"validate:codecov-yml": "curl -X POST --data-binary @codecov.yml https://codecov.io/validate",
"validate:renovate-config": "pnpm --package renovate dlx renovate-config-validator",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "18.2.10",
"@angular/common": "18.2.10",
"@angular/compiler": "18.2.10",
"@angular/core": "18.2.10",
"@angular/platform-browser": "18.2.10",
"@angular/platform-browser-dynamic": "18.2.10",
"@angular/router": "18.2.10",
"rxjs": "7.8.1",
"tslib": "2.7.0",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.11",
"@angular-devkit/core": "18.2.11",
"@angular-devkit/schematics": "18.2.11",
"@angular/cli": "18.2.11",
"@angular/compiler-cli": "18.2.10",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/types": "19.5.0",
"@eslint/compat": "1.2.3",
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@microsoft/api-documenter": "7.23.38",
"@microsoft/api-extractor": "7.48.0",
"@schematics/angular": "18.2.11",
"@semantic-release/changelog": "6.0.3",
"@types/jasmine": "5.1.4",
"@types/node": "22.8.7",
"angular-eslint": "18.4.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"dts-bundle-generator": "9.5.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-json-files": "4.4.2",
"husky": "9.1.7",
"jasmine-core": "5.4.0",
"jest": "29.7.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"knip": "5.41.1",
"lint-staged": "15.2.10",
"ng-mocks": "14.13.1",
"ng-packagr": "18.2.1",
"nyc": "17.1.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"typescript": "5.4.5",
"typescript-eslint": "8.10.0"
},
"packageManager": "pnpm@9.14.4"
}