primo commit

This commit is contained in:
AV77web 2026-06-09 10:56:20 +02:00
commit b309b81d91
4 changed files with 2687 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
#dipendenze
node_modules/*
# variabili d'ambiente
.env

2603
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "provapraticabackend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://forgejo.andreavillari.it:2222/andrea/provapraticabackend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@auth/express": "^0.12.2",
"bcryptjs": "^3.0.3",
"cores": "^0.8.5",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mysql2": "^3.22.5"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.2",
"nodemon": "^3.1.14",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}

44
tsconfig.json Normal file
View file

@ -0,0 +1,44 @@
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
// "rootDir": "./src",
// "outDir": "./dist",
// Environment Settings
// See also https://aka.ms/tsconfig/module
"module": "nodenext",
"target": "esnext",
"types": [],
// For nodejs:
// "lib": ["esnext"],
// "types": ["node"],
// and npm install -D @types/node
// Other Outputs
"sourceMap": true,
"declaration": true,
"declarationMap": true,
// Stricter Typechecking Options
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Style Options
// "noImplicitReturns": true,
// "noImplicitOverride": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true,
// "noPropertyAccessFromIndexSignature": true,
// Recommended Options
"strict": true,
"jsx": "react-jsx",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"skipLibCheck": true,
}
}