- Updated dotenv from 16.5.0 to 16.6.1 - Updated express from 5.1.0 to 5.2.1 - Updated @types/express from 5.0.1 to 5.0.6 - Updated @types/node from 22.15.17 to 22.19.3 - Updated @types/socket.io from 3.0.1 to 3.0.2 - Updated concurrently from 9.1.2 to 9.2.1 - Updated typescript from 5.9.2 to 5.9.3
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "testapp",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "pnpm run build:server && pnpm run build:client && cp -r public ./dist/testapp",
|
|
"build:watch": "tsc --watch",
|
|
"start": "node dist/testapp/src/index.js",
|
|
"dev:server": "ts-node-dev --respawn --watch src,public/ts,public/views src/index.ts",
|
|
"dev": "concurrently \"pnpm:watch:client\" \"pnpm run dev:server\" --kill-others",
|
|
"build:server": "tsc --rootDir ../",
|
|
"build:client": "tsc -p tsconfig.client.json",
|
|
"watch:client": "tsc -p tsconfig.client.json --watch"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"description": "",
|
|
"dependencies": {
|
|
"@openvidu-meet/typings": "workspace:*",
|
|
"dotenv": "16.6.1",
|
|
"express": "5.2.1",
|
|
"mustache-express": "1.3.2",
|
|
"socket.io": "4.8.1",
|
|
"socket.io-client": "4.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "5.0.6",
|
|
"@types/mustache-express": "1.2.5",
|
|
"@types/node": "22.19.3",
|
|
"@types/socket.io": "3.0.2",
|
|
"@types/socket.io-client": "1.4.36",
|
|
"concurrently": "9.2.1",
|
|
"ts-node-dev": "2.0.0",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|