39 lines
966 B
JSON
39 lines
966 B
JSON
{
|
|
"name": "webrtc-file-transfer",
|
|
"version": "1.0.0",
|
|
"description": "WebRTC large file transfer solution with Node.js and Express",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"start": "node dist",
|
|
"compile": "./node_modules/.bin/tsc -p tsconfig.json",
|
|
"compile:client": "./node_modules/.bin/tsc -p tsconfig.browser.json"
|
|
},
|
|
"keywords": [
|
|
"webrtc",
|
|
"file-transfer",
|
|
"socket.io",
|
|
"express",
|
|
"typescript"
|
|
],
|
|
"author": "mattmcw",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.777.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.777.0",
|
|
"bcrypt": "^5.1.1",
|
|
"chokidar": "^4.0.3",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.18.2",
|
|
"lodash": "^4.17.21",
|
|
"socket.io": "^4.7.2",
|
|
"socket.io-client": "^4.7.2",
|
|
"triple-beam": "^1.4.1",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.5.1",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|