-
- Downloads
Sort package.json scripts
... | ... | @@ -4,23 +4,23 @@ |
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"ng": "ng", | ||
"start": "ng serve --configuration local --ssl", | ||
"api": "json-server -w ./utils/json-server/db.js --routes ./utils/json-server/routes.json --middlewares ./utils/json-server/server.js", | ||
"build": "ng build", | ||
"build-and-pack": "npm install && npm run build-library && npm run create-package", | ||
"test": "ng test", | ||
"lint": "ng lint && npm run prettier-check", | ||
"e2e": "ng e2e", | ||
"prettier-check": "prettier --check \"projects/**/*.ts\"", | ||
"prettier-fix": "prettier --write \"./projects/**/*.ts\"", | ||
"build-example-app": "ng build kypo-command-visualizations-example --configuration production", | ||
"build-library": "ng build --configuration production kypo-command-visualizations", | ||
"create-package": "cd dist/kypo-command-visualizations && npm pack", | ||
"build-and-pack": "npm install && npm run build-library && npm run create-package", | ||
"ci-update-version": "cd ./projects/kypo-command-visualizations/ && npm version $TAG_VERSION", | ||
"ci-build-and-pack": "npm ci --cache .npm --prefer-offline && npm run build-library && npm run create-package", | ||
"ci-publish-package": "cd dist/kypo-command-visualizations && npm publish", | ||
"ci-update-version": "cd ./projects/kypo-command-visualizations/ && npm version $TAG_VERSION", | ||
"create-package": "cd dist/kypo-command-visualizations && npm pack", | ||
"e2e": "ng e2e", | ||
"lint": "ng lint && npm run prettier-check", | ||
"ng": "ng", | ||
"prepare": "husky", | ||
"prettier-check": "prettier --check \"projects/**/*.ts\"", | ||
"prettier-fix": "prettier --write \"./projects/**/*.ts\"", | ||
"start": "ng serve --configuration local --ssl", | ||
"test": "ng test" | ||
"prepare": "husky" | ||
}, | ||
"dependencies": { | ||
"@angular/animations": "^18.2.7", | ||
... | ... |
Please register or sign in to comment