mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
20 lines
438 B
JSON
20 lines
438 B
JSON
{
|
|
"name": "typescript-example",
|
|
"version": "1.0.0",
|
|
"description": "An example with TypeScript",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start:server": "ts-node server.ts",
|
|
"start:client": "ts-node client.ts"
|
|
},
|
|
"author": "Damien Arrachequesne",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"socket.io": "^4.0.0",
|
|
"socket.io-client": "^4.0.0",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.0.5"
|
|
}
|
|
}
|