Skip to content

Commit

Permalink
chore: change from pnpm to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
liorzblrn committed Dec 9, 2024
1 parent b688d7f commit 1f9a3b1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions services/workflows-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"start": "nest start",
"dev": "npm run start:watch",
"start:prod": "node dist/src/main",
"prod": "npm run db:migrate-up && pnpm run start:prod",
"prod:next": "npm run db:migrate-up && npm run db:data-sync && pnpm run start:prod",
"prod": "npm run db:migrate-up && npm run start:prod",
"prod:next": "npm run db:migrate-up && npm run db:data-sync && npm run start:prod",
"start:watch": "nest start --watch",
"start:debug": "nest start --debug --watch",
"build": "nest build --path=tsconfig.build.json",
Expand All @@ -39,14 +39,15 @@
"upload-sourcemaps": "tsx scripts/upload-sourcemaps.ts",
"prepare": "npm run prisma:generate",
"db:data-migration:generate": "plop --plopfile ./prisma/data-migrations/plopfile.js --dest ./",
"db:data-migration:migrate": "rimraf ./dist && npm run build && nest start --entryFile ./src/data-migration/scripts/migrate",
"db:data-migration:migrate": "node dist/src/data-migration/scripts/migrate",
"db:data-sync": "nest start --entryFile ./src/data-migration/scripts/sync/run",
"db:data-migration:import": "tsx ./src/data-migration/scripts/import",
"run-validation": "tsx ./scripts/run-validation.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "3.347.1",
"@aws-sdk/client-secrets-manager": "^3.620.1",
"@aws-sdk/client-secrets-manager": "^3.620.1",
"@aws-sdk/lib-storage": "3.347.1",
"@aws-sdk/s3-request-presigner": "3.347.1",
"@ballerine/common": "0.9.56",
Expand Down

0 comments on commit 1f9a3b1

Please sign in to comment.