This commit is contained in:
me 2025-03-15 16:54:55 +02:00
parent f9765a9e7e
commit 803f53af7a
4 changed files with 1108 additions and 4 deletions

View File

@ -0,0 +1,9 @@
import globals from "globals";
import pluginJs from "@eslint/js";
/** @type {import('eslint').Linter.Config[]} */
export default [
{languageOptions: { globals: globals.node }},
pluginJs.configs.recommended,
];

1092
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,9 @@
"scripts": { "scripts": {
"start": "nodemon src/main.mjs", "start": "nodemon src/main.mjs",
"prod": "NODE_ENV=production node src/main.mjs", "prod": "NODE_ENV=production node src/main.mjs",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1",
"format": "npx prettier . --write",
"lint": "npx eslint src"
}, },
"dependencies": { "dependencies": {
"@blackglory/better-sqlite3-migrations": "^0.1.19", "@blackglory/better-sqlite3-migrations": "^0.1.19",
@ -27,6 +29,10 @@
"morgan": "^1.10.0" "morgan": "^1.10.0"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^3.1.9" "@eslint/js": "^9.22.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"prettier": "3.5.3"
} }
} }

View File

@ -3,7 +3,6 @@ import path from 'node:path';
import { fileURLToPath } from 'node:url'; import { fileURLToPath } from 'node:url';
import { app } from './server.mjs'; import { app } from './server.mjs';
import db from './db.mjs';
import api from './api.mjs'; import api from './api.mjs';
import feed from './feed.mjs'; import feed from './feed.mjs';
import utils from './utils.mjs'; import utils from './utils.mjs';