-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "fastify-postgres-dot-js",
"version": "0.2.2",
"description": "A Fastify plugin for Postgres.js.",
"keywords": [
"fastify",
"postgres",
"postgresjs",
"plugin"
],
"homepage": "https://github.com/kylerush/fastify-postgresjs",
"bugs": "https://github.com/kylerush/fastify-postgresjs/issues",
"license": "Unlicense",
"author": "Kyle Rush",
"types": "build/index.d.ts",
"type": "module",
"main": "build/index.js",
"scripts": {
"postgres": "docker run -p 5432:5432 --name fastify-postgresjs -e POSTGRES_PASSWORD=postgres -d postgres:11-alpine",
"migrate": "node test/db-setup.js",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"test:watch": "vitest --coverage",
"test": "vitest run --coverage",
"typescript": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.build.json --noEmit",
"build": "npm run format && npm run lint && npm run typescript && npm run test && tsc -p tsconfig.build.json",
"pre-commit": "npm run format && npm run lint && npm run typescript && npm run test"
},
"dependencies": {
"fastify": "^4.14.1",
"fastify-plugin": "^4.5.0",
"postgres": "^3.3.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitest/coverage-c8": "^0.29.2",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
}
}