chore: update deps
This commit is contained in:
parent
631453600b
commit
2f151c0c0a
File diff suppressed because one or more lines are too long
@ -8,4 +8,4 @@ plugins:
|
||||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
|
||||
spec: "@yarnpkg/plugin-workspace-tools"
|
||||
|
||||
yarnPath: .yarn/releases/yarn-3.5.1.cjs
|
||||
yarnPath: .yarn/releases/yarn-3.6.3.cjs
|
||||
|
10
package.json
10
package.json
@ -8,14 +8,14 @@
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^17.6.3",
|
||||
"@commitlint/config-conventional": "^17.6.3",
|
||||
"@commitlint/cli": "^17.7.2",
|
||||
"@commitlint/config-conventional": "^17.7.0",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^13.2.2",
|
||||
"prettier": "^2.8.8"
|
||||
"lint-staged": "^14.0.1",
|
||||
"prettier": "^3.0.3"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
"packageManager": "yarn@3.5.1"
|
||||
"packageManager": "yarn@3.6.3"
|
||||
}
|
||||
|
@ -5,36 +5,35 @@
|
||||
"build": "rimraf build && tsc",
|
||||
"dev": "nodemon",
|
||||
"lint": "eslint src/**/*.ts --fix",
|
||||
"start": "NODE_PATH=build node build/index.js"
|
||||
"start": "NODE_PATH=build node build/index.js --env-file .env"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastify/cors": "^8.2.1",
|
||||
"@fastify/rate-limit": "^8.0.0",
|
||||
"dotenv": "^16.0.3",
|
||||
"fastify": "^4.17.0",
|
||||
"node-fetch": "^2.6.7",
|
||||
"nodemailer": "^6.9.2",
|
||||
"octokit": "^2.0.16"
|
||||
"@fastify/cors": "^8.4.0",
|
||||
"@fastify/rate-limit": "^8.0.3",
|
||||
"fastify": "^4.23.2",
|
||||
"node-fetch": "^2.7.0",
|
||||
"nodemailer": "^6.9.5",
|
||||
"octokit": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node16": "^1.0.4",
|
||||
"@types/node": "^16.18.11",
|
||||
"@types/node-fetch": "^2.6.4",
|
||||
"@types/nodemailer": "^6.4.8",
|
||||
"@typescript-eslint/eslint-plugin": "^5.59.6",
|
||||
"@typescript-eslint/parser": "^5.59.6",
|
||||
"eslint": "^8.41.0",
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"nodemon": "^2.0.22",
|
||||
"rimraf": "^5.0.1",
|
||||
"@tsconfig/node20": "^20.1.2",
|
||||
"@types/node": "^20.7.1",
|
||||
"@types/node-fetch": "^2.6.6",
|
||||
"@types/nodemailer": "^6.4.11",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
||||
"@typescript-eslint/parser": "^6.7.3",
|
||||
"eslint": "^8.50.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-prettier": "^5.0.0",
|
||||
"nodemon": "^3.0.1",
|
||||
"rimraf": "^5.0.5",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"typescript": "^5.0.4"
|
||||
"typescript": "^5.2.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "16.x"
|
||||
"node": "20.8.0"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1",
|
||||
"packageManager": "yarn@3.6.3",
|
||||
"license": "MIT"
|
||||
}
|
||||
|
@ -1,7 +1,3 @@
|
||||
import dotenv from 'dotenv';
|
||||
|
||||
dotenv.config();
|
||||
|
||||
export default {
|
||||
github: {
|
||||
owner: 'wanhose',
|
||||
|
@ -8,6 +8,6 @@
|
||||
"rootDir": "src",
|
||||
"useUnknownInCatchVariables": false
|
||||
},
|
||||
"extends": "@tsconfig/node16/tsconfig.json",
|
||||
"extends": "@tsconfig/node20/tsconfig.json",
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
|
@ -6,16 +6,16 @@
|
||||
"lint": "eslint src/**/*.js --fix"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chrome": "^0.0.236",
|
||||
"eslint": "^8.41.0",
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"@types/chrome": "^0.0.246",
|
||||
"eslint": "^8.50.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-prettier": "^5.0.0",
|
||||
"minify": "^9.2.0",
|
||||
"rimraf": "^5.0.1"
|
||||
"rimraf": "^5.0.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": "16.x"
|
||||
"node": "20.8.0"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1",
|
||||
"packageManager": "yarn@3.6.3",
|
||||
"license": "MIT"
|
||||
}
|
||||
|
@ -7,13 +7,13 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"minify": "^9.2.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"serve": "^14.2.0",
|
||||
"tailwindcss": "^3.3.2"
|
||||
"rimraf": "^5.0.5",
|
||||
"serve": "^14.2.1",
|
||||
"tailwindcss": "^3.3.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": "16.x"
|
||||
"node": "20.8.0"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1",
|
||||
"packageManager": "yarn@3.6.3",
|
||||
"license": "MIT"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user