Skip to content

Commit

Permalink
refactor: remove npx from npm scripts for existing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
timonmasberg committed May 15, 2023
1 parent 5cc2993 commit 14dc804
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"license": "AGPL-3.0-only",
"scripts": {
"ng": "nx",
"serve:api": "npx nx serve api",
"serve:spa": "npx nx serve spa",
"serve:api": "nx serve api",
"serve:spa": "nx serve spa",
"postinstall": "node ./decorate-angular-cli.js",
"prepare": "husky install",
"test:all": "npx nx run-many --all --target=test --parallel",
"lint:all": "npx nx run-many --all --target=lint --parallel",
"serve:all:prod": "npx nx run-many --target=serve --projects=spa,api --parallel --prod",
"serve:all": "npx nx run-many --target=serve --projects=spa,api --parallel",
"e2e": "npx nx e2e spa-e2e"
"test:all": "nx run-many --all --target=test --parallel",
"lint:all": "nx run-many --all --target=lint --parallel",
"serve:all:prod": "nx run-many --target=serve --projects=spa,api --parallel --prod",
"serve:all": "nx run-many --target=serve --projects=spa,api --parallel",
"e2e": "nx e2e spa-e2e"
},
"private": true,
"devDependencies": {
Expand Down

0 comments on commit 14dc804

Please sign in to comment.