Mechanises the new-ssp skill's manual fork-and-strip recipe into a runnable script: strips the four business contexts and every wiring point that references them (routes, tsconfig aliases, dependency-cruiser boundaries, nav links, capability union, the debug-state panel, showcase snippet tooling), renames BigRegister.* throughout including the backend solution/projects, re-runs gen:api, and reuses gen:context (WP-44) to seed the new portal's first context. Backend business rules and real branding can't be generated from nothing, so those print an explicit checklist instead of pretending to be automated. Verified end-to-end against an isolated clone (not this working tree): lint, dep:check, check:tokens, all frontend tests, ng build, dotnet build/test on the renamed backend, and gen:api against it all pass clean with zero remaining references to the stripped contexts. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
94 lines
3.6 KiB
JSON
94 lines
3.6 KiB
JSON
{
|
|
"name": "atomic-design-poc",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"lint": "eslint .",
|
|
"format:check": "prettier --check .",
|
|
"format": "prettier --write .",
|
|
"start": "ng serve --proxy-config proxy.conf.json",
|
|
"gen:api": "cd backend && dotnet tool restore && dotnet build src/BigRegister.Api -v q && dotnet swagger tofile --output swagger.json src/BigRegister.Api/bin/Debug/net10.0/BigRegister.Api.dll v1 && cd .. && nswag run nswag.json",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development",
|
|
"test": "ng test",
|
|
"test:coverage": "ng test --configuration coverage",
|
|
"storybook": "ng run atomic-design-poc:storybook",
|
|
"build-storybook": "ng run atomic-design-poc:build-storybook",
|
|
"test-storybook": "test-storybook",
|
|
"test-storybook:ci": "concurrently -k -s first -n sb,axe \"http-server storybook-static -p 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && test-storybook --url http://127.0.0.1:6006 --maxWorkers=2\"",
|
|
"check:tokens": "bash scripts/check-tokens.sh",
|
|
"dep:check": "depcruise src/app --config .dependency-cruiser.js",
|
|
"dep:graph": "bash scripts/dep-graph.sh",
|
|
"gen:snippets": "node scripts/gen-snippets.mjs",
|
|
"gen": "plop",
|
|
"gen:value-object": "plop value-object",
|
|
"gen:form-machine": "plop form-machine",
|
|
"gen:context": "plop context",
|
|
"create-ssp": "node scripts/create-ssp.mjs",
|
|
"serve:i18n": "ng build --configuration development --localize && node scripts/serve-i18n.mjs",
|
|
"ci": "bash scripts/ci-local.sh",
|
|
"e2e": "playwright test",
|
|
"extract-i18n": "ng extract-i18n --output-path src/locale"
|
|
},
|
|
"private": true,
|
|
"packageManager": "npm@11.12.1",
|
|
"dependencies": {
|
|
"@angular/common": "^22.0.0",
|
|
"@angular/compiler": "^22.0.0",
|
|
"@angular/core": "^22.0.0",
|
|
"@angular/forms": "^22.0.0",
|
|
"@angular/platform-browser": "^22.0.0",
|
|
"@angular/router": "^22.0.0",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/architect": "^0.2200.0",
|
|
"@angular-devkit/build-angular": "^22.0.0",
|
|
"@angular-devkit/core": "^22.0.0",
|
|
"@angular/build": "^22.0.4",
|
|
"@angular/cli": "^22.0.4",
|
|
"@angular/compiler-cli": "^22.0.0",
|
|
"@angular/localize": "^22.0.4",
|
|
"@angular/platform-browser-dynamic": "^22.0.0",
|
|
"@compodoc/compodoc": "^1.2.1",
|
|
"@playwright/test": "^1.61.1",
|
|
"@storybook/addon-a11y": "^10.4.6",
|
|
"@storybook/addon-docs": "^10.4.6",
|
|
"@storybook/addon-onboarding": "^10.4.6",
|
|
"@storybook/angular": "^10.4.6",
|
|
"@storybook/test-runner": "^0.24.4",
|
|
"@vitest/coverage-v8": "^4.1.9",
|
|
"angular-eslint": "^22.0.0",
|
|
"axe-playwright": "^2.2.2",
|
|
"concurrently": "^10.0.3",
|
|
"dependency-cruiser": "^18.1.0",
|
|
"eslint": "^10.6.0",
|
|
"http-server": "^14.1.1",
|
|
"jsdom": "^29.0.0",
|
|
"nswag": "^14.7.1",
|
|
"plop": "^4.0.5",
|
|
"prettier": "^3.8.1",
|
|
"remark-gfm": "^4.0.1",
|
|
"storybook": "^10.4.6",
|
|
"typescript": "~6.0.2",
|
|
"typescript-eslint": "^8.62.0",
|
|
"vitest": "^4.0.8",
|
|
"wait-on": "^9.0.10"
|
|
},
|
|
"comment-overrides": "Pin patched versions of vulnerable DEV/BUILD-only transitive deps (Storybook + build chain). The shipped app already audits clean; this clears the dev-tooling advisories without downgrading Angular 22.",
|
|
"overrides": {
|
|
"@babel/core": "^7.29.7",
|
|
"picomatch": "^4.0.4",
|
|
"esbuild": "^0.28.1",
|
|
"http-proxy-middleware": "^3.0.7",
|
|
"ajv": "^8.20.0",
|
|
"webpack-dev-server": "^5.2.5",
|
|
"sockjs": "^0.3.24",
|
|
"uuid": "^11.1.1",
|
|
"eslint": {
|
|
"ajv": "^6.12.6"
|
|
}
|
|
}
|
|
}
|