WebService/package.json
azures04 1e78bd68cf Add SQLite database and repositories, remove old routes
Introduces a new SQLite database setup using better-sqlite3, with initialization scripts and repository modules for users, permissions, and licenses. Removes legacy user and register routes and related test files. Updates dependencies to include better-sqlite3, bcryptjs, and ftp-srv.
2026-01-27 05:29:40 +01:00

45 lines
1.0 KiB
JSON

{
"name": "base-rest-api",
"version": "0.0.1-alpha",
"description": "",
"repository": {
"type": "git",
"url": "https://gitea.azures.fr/azures04/Base-REST-API"
},
"license": "AGPL-3.0-only",
"author": {
"name": "azures04",
"url": "https://gitea.azures.fr/azures04/Base-REST-API",
"email": "gilleslazure04@gmail.com"
},
"type": "commonjs",
"main": "server.js",
"scripts": {
"start:dev": "nodemon .",
"start": "node .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"homepage": "https://gitea.azures.fr/azures04/Base-REST-API",
"readme": "https://gitea.azures.fr/azures04/Base-REST-API/src/branch/main/README.md",
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.6.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"ftp-srv": "^4.6.3",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"path-to-regexp": "^8.3.0",
"zod": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"nodemon": "^3.1.11"
}
}