29 lines
626 B
JSON
29 lines
626 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mongoose": "^7.6.3",
|
|
"socket.io": "^4.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/node": "^20.9.0",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|