You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

36 lines
950 B

{
"name": "realtime-voicecall-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions \".ts,.js\"",
"type-check": "tsc --noEmit",
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"socket.io": "^4.8.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@types/socket.io": "^3.0.2",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}