2025-10-24 20:27:18 +02:00
|
|
|
{
|
|
|
|
|
"name": "collabtable-server",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Collaborative list management server",
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
|
|
|
"build": "tsc",
|
2025-10-25 17:33:48 +02:00
|
|
|
"lint": "eslint src --ext .ts",
|
|
|
|
|
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
|
2025-10-24 20:27:18 +02:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
|
},
|
|
|
|
|
"keywords": ["collaboration", "api", "express"],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"express": "^4.18.2",
|
|
|
|
|
"cors": "^2.8.5",
|
|
|
|
|
"better-sqlite3": "^11.0.0",
|
2025-10-25 17:02:42 +02:00
|
|
|
"dotenv": "^16.3.1",
|
2025-10-26 15:12:45 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
|
|
|
"@typescript-eslint/parser": "^7.0.2",
|
|
|
|
|
"eslint": "^8.57.0",
|
2025-10-25 17:33:48 +02:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
|
"prettier": "^3.3.3",
|
2025-10-25 17:02:42 +02:00
|
|
|
"pg": "^8.11.3"
|
2025-10-24 20:27:18 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/express": "^4.17.21",
|
|
|
|
|
"@types/cors": "^2.8.17",
|
|
|
|
|
"@types/node": "^20.10.6",
|
|
|
|
|
"@types/better-sqlite3": "^7.6.11",
|
2025-10-25 17:02:42 +02:00
|
|
|
"@types/pg": "^8.10.2",
|
2026-06-03 17:38:23 +02:00
|
|
|
"typescript": "5.5.4",
|
2025-10-24 20:27:18 +02:00
|
|
|
"ts-node-dev": "^2.0.0"
|
|
|
|
|
}
|
|
|
|
|
}
|