{ "name": "backend", "version": "1.0.0", "description": "Backend service for Anonymous Desire Aggregator", "main": "src/index.ts", "scripts": { "start": "ts-node src/index.ts", "dev": "nodemon src/index.ts", "build": "tsc", "test": "jest" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@types/cors": "^2.8.19", "@types/dotenv": "^6.1.1", "@types/express": "^4.17.13", "@types/jest": "^27.0.3", "@types/node": "^16.11.12", "@types/supertest": "^6.0.3", "@types/uuid": "^8.3.4", "@types/ws": "^8.2.2", "jest": "^27.4.3", "nodemon": "^2.0.15", "supertest": "^7.1.4", "ts-jest": "^27.1.0", "ts-node": "^10.4.0", "typescript": "^4.5.2", "eslint": "^8.56.0", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0" }, "scripts": { "start": "ts-node src/index.ts", "dev": "nodemon src/index.ts", "build": "tsc", "test": "jest", "lint": "eslint src/**/*.ts" }, "dependencies": { "@google/generative-ai": "^0.1.0", "cors": "^2.8.5", "dotenv": "^17.2.3", "express": "^4.17.2", "jest-fetch-mock": "^3.0.3", "uuid": "^8.3.2", "ws": "^8.4.0" } }