Files
deflock/backend/package.json
Will Freeman 4b953023b3 ditch scala
2026-01-01 19:04:08 -06:00

30 lines
693 B
JSON

{
"name": "deflock-backend",
"version": "1.0.0",
"description": "Backend API service for DeFlock",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint src --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"axios": "^1.6.2",
"lru-cache": "^10.1.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.10.5",
"typescript": "^5.3.3",
"ts-node-dev": "^2.0.0"
}
}