Skip to content

Commit

Permalink
fix: missing dependency (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
moroine authored Sep 16, 2024
1 parent a06dfa2 commit 866441a
Show file tree
Hide file tree
Showing 6 changed files with 125 additions and 79 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@
"import/no-relative-packages": "error",
"import/no-useless-path-segments": ["error"],
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.ts",
"**/*.test.tsx",
"**/tests/**/*.ts",
"**/tests/*.ts",
"**/fixtures/**/*.ts",
"**/tsup.config.ts",
"**/vitest.workspace.ts"
]
}
],
"@typescript-eslint/consistent-type-imports": ["error", { "prefer": "type-imports" }],
"@typescript-eslint/ban-ts-comment": ["off"],
"@typescript-eslint/no-import-type-side-effects": "error",
Expand Down
2 changes: 1 addition & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.2.0",
"luhn": "^2.4.1",
"nock": "beta",
"type-fest": "^4.24.0",
"typescript": "^5.5.4",
Expand All @@ -40,6 +39,7 @@
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"jsonwebtoken": "^9.0.2",
"luhn": "^2.4.1",
"luxon": "^3.5.0",
"openapi3-ts": "^4.3.3",
"zod": "^3.23.8"
Expand Down
2 changes: 2 additions & 0 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^7.118.0",
"@sentry/tracing": "^7.114.0",
"api-alternance-sdk": "workspace:^",
"axios": "^1.7.3",
"axios-cache-interceptor": "^1.5.3",
"axios-retry": "^4.5.0",
Expand Down Expand Up @@ -60,6 +61,7 @@
"pino-pretty": "^11.2.2",
"rate-limiter-flexible": "^5.0.3",
"sax": "^1.4.1",
"shared": "workspace:^",
"stream-json": "^1.8.0",
"unique-names-generator": "^4.7.1",
"unzipper": "^0.12.3",
Expand Down
5 changes: 3 additions & 2 deletions shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"@fastify/swagger": "^8.15.0",
"api-alternance-sdk": "workspace:^",
"job-processor": "^1.5.0",
"lodash-es": "^4.17.21",
"luhn": "^2.4.1",
Expand All @@ -36,6 +37,7 @@
"react": "18.3.1",
"type-fest": "^4.24.0",
"zod": "^3.23.8",
"zod-mongodb-schema": "^1.0.2",
"zod-to-json-schema": "^3.23.2"
},
"devDependencies": {
Expand All @@ -46,7 +48,6 @@
"mongodb": "^6.8.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"zod": "^3.23.8",
"zod-mongodb-schema": "^1.0.2"
"zod": "^3.23.8"
}
}
6 changes: 5 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"api-alternance-sdk": "workspace:^",
"autosuggest-highlight": "^3.3.4",
"core-js": "^3.38.0",
"date-fns": "^3.6.0",
Expand All @@ -54,6 +55,7 @@
"redoc": "^2.1.5",
"remark-gfm": "^4.0.0",
"sass": "^1.77.8",
"shared": "workspace:^",
"sharp": "^0.33.4",
"styled-components": "^6.1.12",
"swagger-ui-react": "^5.17.14",
Expand All @@ -65,7 +67,9 @@
"@tsconfig/next": "^2.0.3",
"@types/autosuggest-highlight": "^3.2.3",
"@types/swagger-ui-react": "^4.18.3",
"dotenv": "^16.4.5",
"notion-types": "^6.16.0",
"type-fest": "^4.24.0"
"type-fest": "^4.24.0",
"vitest": "^2.1.1"
}
}
Loading

0 comments on commit 866441a

Please sign in to comment.