-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "typescript-fastify-kysely-postgres-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node build/index.js | pino-pretty --colorize",
"dev": "ts-node-dev ./src/index.ts | pino-pretty --colorize",
"postinstall": "npx typesync && husky install",
"lint": "./node_modules/.bin/eslint",
"migrate": "bash src/scripts/migrate.sh",
"seed": "bash src/scripts/seed.sh"
},
"keywords": [],
"author": "Taha Sheikh",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^10.1.0",
"@fastify/swagger": "^8.3.1",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.1.0",
"env-schema": "^5.2.0",
"fastify": "^4.15.0",
"fastify-auth": "^1.2.0",
"fastify-autoload": "^3.13.0",
"fastify-cli": "^5.7.1",
"fastify-file-upload": "^4.0.0",
"fastify-jwt": "^4.2.0",
"fastify-multipart": "^5.4.0",
"fastify-now": "^3.0.4",
"fastify-plugin": "^4.5.0",
"http-errors": "^2.0.0",
"kysely": "^0.23.5",
"kysely-codegen": "^0.10.0",
"pg": "^8.10.0",
"pino": "^8.11.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/eslint": "8.21.3",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/http-errors": "2.0.1",
"@types/jest": "29.5.0",
"@types/node": "18.15.10",
"@types/nodemon": "1.19.2",
"@types/pg": "^8.6.6",
"@types/pino": "7.0.4",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"cross-env": "7.0.3",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"nodemon": "2.0.22",
"nyc": "15.1.0",
"pino-pretty": "10.0.0",
"prettier": "2.8.7",
"tap": "16.3.4",
"ts-node": "10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.0.2"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"env": {
"node": true
}
},
"lint-staged": {
"*.{js,ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
}
}