Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
257 changes: 257 additions & 0 deletions angular-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions angular-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"test": "ng test",
"lint": "ng lint",
"fastify-dev": "npm --prefix ../fastify-api-server start",
"start-angular-fastify": "concurrently \"npm run fastify-dev\" \"VITE_API=http://0.0.0.0:3000/api npm run dev\"",
"start-angular-fastify": "concurrently \"npm run fastify-dev\" \"npm run start\"",
"start-angular-func-swa": "npx @azure/static-web-apps-cli@latest start http://localhost:4200 --api-location ../api --run \"npm run start\"",
"start-angular-fastify-swa": "concurrently \"npm run fastify-dev\" \"npx @azure/static-web-apps-cli@latest start http://0.0.0.0:4200 --api-devserver-url http://0.0.0.0:3000 --host=0.0.0.0 --run 'VITE_API=/api npm run start -- --host 0.0.0.0'\""
"start-angular-fastify-swa": "concurrently \"npm run fastify-dev\" \"npx @azure/static-web-apps-cli@latest start http://localhost:4200 --api-devserver-url http://localhost:3000 --run 'npm run start'\""
},
"private": true,
"engines": {
Expand Down Expand Up @@ -44,6 +44,7 @@
"@angular/language-service": "^18.2.6",
"@types/jasmine": "~3.10.0",
"@types/node": "^16.0.0",
"concurrently": "^8.2.2",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
Expand Down
Loading