2
1
mirror of https://github.com/Thream/api.git synced 2024-07-04 03:40:12 +02:00

chore: cleanup

This commit is contained in:
Divlo 2022-02-07 16:18:11 +00:00
parent 2405b4951b
commit 5f2b8c8021
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
7 changed files with 1420 additions and 1343 deletions

View File

@ -1,5 +0,0 @@
build
node_modules
coverage
package.json
package-lock.json

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
* text=auto eol=lf

View File

@ -1,10 +1,10 @@
{
"*": ["editorconfig-checker"],
"*.{js,ts,jsx,tsx}": [
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
],
"*.{yml,json}": ["prettier --write"],
"*.{json,jsonc,yml,yaml}": ["prettier --write"],
"*.{md}": ["prettier --write", "markdownlint --dot --fix"]
}

View File

@ -12,7 +12,6 @@
<br />
<a href="https://conventionalcommits.org"><img src="https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg" alt="Conventional Commits" /></a>
<a href="https://github.com/semantic-release/semantic-release"><img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="semantic-release" /></a>
<a href="https://dependabot.com/"><img src="https://badgen.net/github/dependabot/Thream/api?icon=dependabot" alt="Dependabot badge" /></a>
</p>
## 📜 About

2719
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,13 +14,13 @@
"scripts": {
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
"start": "cross-env NODE_ENV=production node build/index.js",
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"swc ./src --out-dir ./build --watch\" \"cross-env NODE_ENV=development nodemon -e js,json,yaml build/index.js\"",
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"swc ./src --out-dir ./build --watch\" \"cross-env NODE_ENV=development nodemon build/index.js\"",
"generate": "plop",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint '**/*.md' --dot --ignore-path '.gitignore'",
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
"lint:prettier": "prettier '.' --check",
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
"lint:prettier": "prettier \".\" --check",
"lint:staged": "lint-staged",
"test": "jest",
"prisma:generate": "prisma generate",
@ -31,22 +31,22 @@
"postinstall": "husky install"
},
"dependencies": {
"@prisma/client": "3.8.1",
"@sinclair/typebox": "0.23.2",
"@prisma/client": "3.9.1",
"@sinclair/typebox": "0.23.3",
"@thream/socketio-jwt": "2.1.1",
"axios": "0.25.0",
"bcryptjs": "2.4.3",
"dotenv": "14.2.0",
"dotenv": "16.0.0",
"ejs": "3.1.6",
"fastify": "3.27.0",
"fastify": "3.27.1",
"fastify-cors": "6.0.2",
"fastify-helmet": "7.0.1",
"fastify-multipart": "5.3.0",
"fastify-plugin": "3.0.0",
"fastify-plugin": "3.0.1",
"fastify-rate-limit": "5.7.0",
"fastify-sensible": "3.1.2",
"fastify-static": "4.5.0",
"fastify-swagger": "4.13.1",
"fastify-swagger": "4.14.0",
"fastify-url-data": "3.0.3",
"http-errors": "2.0.0",
"jsonwebtoken": "8.5.1",
@ -60,7 +60,7 @@
"@commitlint/config-conventional": "16.0.0",
"@saithodev/semantic-release-backmerge": "2.1.0",
"@swc/cli": "0.1.55",
"@swc/core": "1.2.133",
"@swc/core": "1.2.136",
"@swc/jest": "0.2.17",
"@types/bcryptjs": "2.4.2",
"@types/busboy": "1.3.0",
@ -69,7 +69,7 @@
"@types/jest": "27.4.0",
"@types/jsonwebtoken": "8.5.8",
"@types/ms": "0.7.31",
"@types/node": "17.0.10",
"@types/node": "17.0.15",
"@types/nodemailer": "6.4.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"concurrently": "7.0.0",
@ -84,15 +84,15 @@
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-unicorn": "40.1.0",
"husky": "7.0.4",
"jest": "27.4.7",
"jest": "27.5.0",
"jest-mock-extended": "2.0.4",
"jest-ts-webcompat-resolver": "1.0.0",
"lint-staged": "12.2.2",
"markdownlint-cli": "0.30.0",
"lint-staged": "12.3.3",
"markdownlint-cli": "0.31.0",
"nodemon": "2.0.15",
"plop": "3.0.5",
"prettier": "2.5.1",
"prisma": "3.8.1",
"prisma": "3.9.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
"typescript": "4.5.5"

View File

@ -1,4 +1,5 @@
import { randomUUID } from 'node:crypto'
import { Static, Type } from '@sinclair/typebox'
import { FastifyPluginAsync, FastifySchema } from 'fastify'