This repository has been archived on 2025-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mylinks/package.json

26 lines
687 B
JSON

{
"name": "mylinks",
"description": "Eine modulare Link-Verwaltungssoftware zum kürzen von Links, erstellen von Umfragen und mehr.",
"scripts": {
"admin": "cd admin && npm run dev",
"server": "nodemon server",
"build": "cd admin && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run admin\""
},
"dependencies": {
"bcrypt": "^5.1.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.3",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}