Some checks failed
Architecture Governance / architecture (push) Has been cancelled
Stood up Verdaccio (Docker, on the dev server) as a private npm registry since no public registry/NPM_TOKEN exists yet. Published @marketplaces/auth and @marketplaces/payment there, removed the local packages/ staging copy from this repo, and switched marketplaces to install @marketplaces/auth 0.1.0 as a real npm dependency through the registry. - .npmrc scopes @marketplaces to the Verdaccio registry (no token committed; each installer/CI supplies its own via npm login or an env-injected token) - Verified: fresh npm install, ng build, arch:check:boundaries, and full test suite (103/103) all pass against the registry-installed package - Registry is reachable only via SSH tunnel today (firewall allows 80/443/ SSH only); public/CI access is a follow-up decision, documented in docs/PACKAGE-EXTRACTION.md Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
55 lines
1.9 KiB
JSON
55 lines
1.9 KiB
JSON
{
|
|
"name": "dexarmarket",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"dexar": "ng serve --configuration=development --port 4200",
|
|
"start:dexar": "ng serve --configuration=development --port 4200",
|
|
"build": "ng build",
|
|
"build:dexar": "ng build --configuration=production",
|
|
"test": "ng test --watch=false --browsers=ChromeHeadlessNoSandbox",
|
|
"test:coverage": "ng test --watch=false --browsers=ChromeHeadlessNoSandbox --code-coverage",
|
|
"watch": "ng build --watch --configuration development",
|
|
"arch:check:boundaries": "node tools/architecture/check-boundaries.mjs",
|
|
"arch:check:cycles": "npx --yes madge --circular --extensions ts src/app --ts-config tsconfig.app.json",
|
|
"arch:check": "npm run arch:check:boundaries ; npm run arch:check:cycles",
|
|
"barry": "barry-cache",
|
|
"barry:validate": "barry-cache validate",
|
|
"barry:resume": "barry-cache resume",
|
|
"barry:finalize": "barry-cache finalize",
|
|
"barry:failure": "barry-cache failure"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@marketplaces/auth": "0.1.0",
|
|
"@angular/animations": "22.0.8",
|
|
"@angular/cdk": "22.0.6",
|
|
"@angular/common": "22.0.8",
|
|
"@angular/compiler": "22.0.8",
|
|
"@angular/core": "22.0.8",
|
|
"@angular/forms": "22.0.8",
|
|
"@angular/platform-browser": "22.0.8",
|
|
"@angular/router": "22.0.8",
|
|
"@angular/service-worker": "22.0.8",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.8.0",
|
|
"zone.js": "~0.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular/build": "22.0.8",
|
|
"@angular/cli": "22.0.8",
|
|
"@angular/compiler-cli": "22.0.8",
|
|
"@types/jasmine": "~5.1.0",
|
|
"barry-cache": "^0.9.3",
|
|
"istanbul-lib-instrument": "^6.0.3",
|
|
"jasmine-core": "~5.5.0",
|
|
"karma": "~6.4.0",
|
|
"karma-chrome-launcher": "~3.2.0",
|
|
"karma-coverage": "^2.2.1",
|
|
"karma-jasmine": "~5.1.0",
|
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
"typescript": "~6.0.3"
|
|
}
|
|
}
|