47 lines
996 B
JSON
47 lines
996 B
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node dist/main.js",
|
|
"dev": "nodemon",
|
|
"build": "tsc"
|
|
},
|
|
"nodemonConfig": {
|
|
"watch": [
|
|
"src"
|
|
],
|
|
"ignore": [
|
|
"dist"
|
|
],
|
|
"exec": "tsc && node ./dist/main.js",
|
|
"ext": "ts,js,json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "GPL-3.0",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"bcryptjs": "^3.0.2",
|
|
"body-parser": "^1.20.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.13.3",
|
|
"sequelize": "^6.37.5",
|
|
"sqlite3": "^5.1.7",
|
|
"umzug": "^3.8.2",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/jsonwebtoken": "^9.0.9",
|
|
"@types/node": "^22.13.4",
|
|
"nodemon": "^3.1.9",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|