youtuber-blog/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2023-06-10 00:37:36 +00:00
{
"name": "fastify-drizzle-quick-start",
"version": "1.0.0",
"description": "Quick start for Fastify, TypeScript, ESlint, Prettier and DrizzleORM",
2024-04-17 14:08:16 +00:00
"type": "module",
2023-06-10 00:37:36 +00:00
"main": "index.js",
"repository": "https://github.com/Looskie/fastify-drizzle-quick-start.git",
"author": "Cody Miller <50378828+Looskie@users.noreply.github.com>",
"license": "none",
"scripts": {
"lint": "xo",
2024-04-21 22:41:38 +00:00
"dev": "tsx watch --clear-screen=false src/index.js",
2023-06-10 00:37:36 +00:00
"prettier": "prettier --write .",
2023-06-10 00:57:19 +00:00
"migrate": "drizzle-kit generate:pg",
2024-04-17 14:08:16 +00:00
"start": "node src/index.js"
2023-06-10 00:37:36 +00:00
},
"devDependencies": {
"@types/cli-color": "^2.0.6",
"@types/node": "^20.10.4",
"@types/pg": "^8.10.9",
2023-06-10 00:37:36 +00:00
"cli-color": "^2.0.3",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.6",
"prettier": "^3.1.1",
"tsc-alias": "^1.8.8",
2023-06-10 00:37:36 +00:00
"tsx": "^3.12.7",
"typescript": "^5.3.3",
"xo": "^0.56.0"
2023-06-10 00:37:36 +00:00
},
"dependencies": {
"@fastify/cors": "^8.4.2",
2024-04-21 22:41:38 +00:00
"@fastify/oauth2": "^7.8.0",
"drizzle-orm": "^0.29.1",
"fastify": "^4.25.0",
"fastify-plugin": "^4.5.1",
2024-04-21 22:41:38 +00:00
"googleapis": "^134.0.0",
"pg": "^8.11.3",
"redis": "^4.6.11",
2024-04-21 22:41:38 +00:00
"simple-get": "^4.0.1",
"tsc": "^2.0.4",
"zod": "^3.22.4"
},
"xo": {
"rules": {
"import/extensions": "off",
"@typescript-eslint/quotes": [
"error",
"double"
],
"@typescript-eslint/indent": [
"error",
2
],
"@typescript-eslint/object-curly-spacing": [
"error",
"always"
],
"n/prefer-global/process": "off",
"@typescript-eslint/no-extraneous-class": "off",
"arrow-parens": [
"error",
"always"
],
"@typescript-eslint/no-floating-promises": "off"
}
2023-06-10 00:37:36 +00:00
}
}