29 lines
607 B
JSON
29 lines
607 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "ts-node src/index.ts",
|
|
"dev": "nodemon src/index.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.2.0",
|
|
"dotenv": "^17.2.4",
|
|
"fastify": "^5.7.4",
|
|
"pg": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.2.1",
|
|
"@types/pg": "^8.16.0",
|
|
"nodemon": "^3.1.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|