Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint": "eslint",
"lint:fix": "eslint --fix",
"load-data": "docker exec -it fastify-postgres psql -c 'CREATE TABLE users(id serial PRIMARY KEY, username VARCHAR (50) NOT NULL);' -U postgres -d postgres",
"postgres": "docker run -p 5432:5432 --name fastify-postgres -e POSTGRES_PASSWORD=postgres -d postgres:11-alpine",
"postgres": "docker run -p 5432:5432 --name fastify-postgres -e POSTGRES_PASSWORD=postgres -d postgres:18-alpine",
Comment thread
climba03003 marked this conversation as resolved.
Outdated
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:report": "standard && c8 --reporter html node --test",
Expand Down Expand Up @@ -75,7 +75,7 @@
"pg": "^8.11.3",
"pg-native": "^3.0.1",
"tsd": "^0.33.0",
"typescript": "~5.9.2"
"typescript": "~6.0.2"
},
"peerDependencies": {
"pg": ">=6.0.0"
Expand Down
Loading