youtuber-blog/package.json

79 lines
2.1 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",
2024-05-29 19:35:18 +00:00
"@types/stripe-v3": "^3.1.33",
2023-06-10 00:37:36 +00:00
"cli-color": "^2.0.3",
"dotenv": "^16.3.1",
2024-06-07 12:26:59 +00:00
"drizzle-kit": "^0.22.4",
2024-06-08 12:43:35 +00:00
"pg": "^8.12.0",
"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": {
2024-08-09 18:08:39 +00:00
"@distube/ytdl-core": "^4.14.4",
2024-04-24 20:49:59 +00:00
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^8.4.2",
2024-04-28 18:58:31 +00:00
"@fastify/multipart": "^8.2.0",
2024-04-21 22:41:38 +00:00
"@fastify/oauth2": "^7.8.0",
2024-07-07 07:06:46 +00:00
"@neondatabase/serverless": "^0.9.3",
2024-06-13 20:16:17 +00:00
"@sentry/node": "^8.9.2",
2024-06-07 12:26:59 +00:00
"drizzle-orm": "^0.31.1",
"fastify": "^4.25.0",
"fastify-plugin": "^4.5.1",
2024-07-07 07:06:46 +00:00
"fastify-raw-body": "^4.3.0",
2024-04-21 22:41:38 +00:00
"googleapis": "^134.0.0",
2024-05-29 19:35:18 +00:00
"mailtrap": "^3.3.0",
2024-04-28 18:58:31 +00:00
"openai": "^4.38.5",
"redis": "^4.6.11",
2024-04-21 22:41:38 +00:00
"simple-get": "^4.0.1",
2024-05-29 19:35:18 +00:00
"stripe": "^15.7.0",
"tsc": "^2.0.4",
2024-06-13 09:27:17 +00:00
"xml2js": "^0.6.2",
"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
}
}