Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mellevanderlinde committed Dec 17, 2024
1 parent 749b99f commit 345be2a
Show file tree
Hide file tree
Showing 7 changed files with 736 additions and 675 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To install the project's dependencies, build the website and deploy to AWS, run

```
pnpm install
pnpm build
pnpm run ci
cd apps/infra
npx cdk deploy -c accountId=012345678912
```
2 changes: 1 addition & 1 deletion apps/infra/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import config from "eslint-config/eslint.config.mjs";

export default [
...config,
{ ignores: ["**/cdk.out/**", "src/index.js", "**/*.d.ts"] },
{ ignores: ["**/cdk.out/**", "**/*.js", "**/*.d.ts"] },
];
6 changes: 3 additions & 3 deletions apps/infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"aws-cdk": "^2.171.1",
"@types/node": "^22.10.2",
"aws-cdk": "^2.173.1",
"eslint-config": "workspace:*",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"aws-cdk-lib": "^2.171.1",
"aws-cdk-lib": "^2.173.1",
"constructs": "^10.4.2",
"source-map-support": "^0.5.21",
"website": "workspace:*"
Expand Down
6 changes: 2 additions & 4 deletions apps/infra/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
},
"exclude": [
"node_modules",
"cdk.out"
],
"include": [
"src/**/*.ts"
"cdk.out",
"jest.config.ts"
]
}
16 changes: 8 additions & 8 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
"test:update": "jest -u"
},
"dependencies": {
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"geist": "^1.3.1",
"highlight.js": "^11.10.0",
"next": "^14.2.18",
"highlight.js": "^11.11.0",
"next": "^14.2.20",
"next-mdx-remote": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-icons": "^5.4.0",
"reading-time": "workspace:*",
"tailwindcss": "^3.4.15",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@testing-library/react": "^16.0.1",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"autoprefixer": "^10.4.20",
"eslint-config": "workspace:*",
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"lint": "eslint ."
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"eslint": "^9.16.0",
"@eslint/compat": "^1.2.4",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript-eslint": "^8.16.0"
"typescript-eslint": "^8.18.1"
}
}
Loading

0 comments on commit 345be2a

Please sign in to comment.