Skip to content

Commit

Permalink
feat: Add load/sync securities implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
letehaha committed Jan 29, 2024
1 parent e0f53f4 commit 3c08b6c
Show file tree
Hide file tree
Showing 11 changed files with 764 additions and 1 deletion.
216 changes: 216 additions & 0 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"migrate-undo": "cross-env NODE_ENV=production npx sequelize-cli db:migrate:undo",
"seed": "npx sequelize-cli db:seed:all",
"seed-undo": "npx sequelize-cli db:seed:undo:all",
"db:generate-migration": "npx sequelize-cli migration:generate --name migration-skeleton",
"db:reset": "cross-env NODE_ENV=test npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate",
"pretest": "cross-env NODE_ENV=test npm run db:reset",
"test": "cross-env NODE_ENV=test npm run test:unit && npm run test:e2e",
Expand Down Expand Up @@ -51,6 +52,7 @@
},
"homepage": "https://github.com/letehaha/budget-tracker-be#readme",
"dependencies": {
"@polygon.io/client-js": "^7.3.2",
"axios": "^1.6.1",
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
Expand All @@ -65,6 +67,7 @@
"express-winston": "^4.2.0",
"jsonwebtoken": "^9.0.2",
"locale": "^0.1.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"p-queue": "6.6.2",
"passport": "^0.6.0",
Expand All @@ -88,6 +91,7 @@
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/locale": "^0.1.4",
"@types/lodash": "^4.14.202",
"@types/morgan": "^1.9.9",
"@types/node": "^20.9.0",
"@types/passport": "^1.0.15",
Expand Down
1 change: 1 addition & 0 deletions src/js/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './logger';
export * as requestsUtils from './requests-calling.utils';
Loading

0 comments on commit 3c08b6c

Please sign in to comment.