Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions knexfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ const defaults = {
debug: false,
};

const environments = {};
const environments: Record<string, any> = {};

const config = merge(defaults, environments[NODE_ENV]);
const config = merge(defaults, NODE_ENV ? environments[NODE_ENV] : {});

module.exports = config;
export default config;
22 changes: 21 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@
"generate:schemas": "pnpm run generate:jsonschemas && pnpm run generate:yamls"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@google/generative-ai": "^0.24.1",
"@heroui/react": "^2.8.5",
"@kubernetes/client-node": "^0.22.3",
"@octokit/auth-app": "^6.0.2",
"@octokit/core": "^5.0.2",
"@octokit/webhooks": "^12.0.1",
"@types/react-syntax-highlighter": "^15.5.13",
"aws-sdk": "^2.1004.0",
"axios": "^0.30.0",
"bcryptjs": "^3.0.2",
Expand All @@ -40,6 +44,7 @@
"dotenv": "^8.0.0",
"fastly": "^7.0.1",
"flatted": "^3.0.4",
"framer-motion": "^12.23.24",
"haikunator": "^2.1.2",
"hot-shots": "^10.0.0",
"ioredis": "^4.27.3",
Expand All @@ -59,13 +64,16 @@
"next": "^14.0.3",
"object-hash": "^2.0.3",
"objection": "^3.0.1",
"openai": "^6.1.0",
"p-queue": "^6.6.2",
"pg": "^8.11.0",
"pino": "^8.16.2",
"pino-caller": "^3.4.0",
"psl": "^1.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"redlock": "^4.2.0",
"seedrandom": "^3.0.5",
"shelljs": "^0.8.5",
Expand All @@ -82,6 +90,7 @@
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/format": "^19.3.0",
"@heroui/theme": "^2.4.23",
"@next/eslint-plugin-next": "^13.1.6",
"@octokit/webhooks-types": "^7.6.1",
"@swc/core": "^1.3.62",
Expand All @@ -104,6 +113,7 @@
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.42.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
Expand All @@ -117,7 +127,9 @@
"mockdate": "^2.0.3",
"only-allow": "^1.1.1",
"pino-pretty": "^10.0.0",
"postcss": "^8.5.6",
"prettier": "2.8.3",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.15",
"tsx": "^4.19.2",
Expand Down Expand Up @@ -193,7 +205,15 @@
"*.ts"
],
"rules": {
"no-undef": "off"
"no-undef": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none",
"varsIgnorePattern": "^_"
}
],
"no-unused-vars": "off"
}
}
],
Expand Down
Loading