UnityRenderStreaming/WebApp/package.json

54 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2019-03-28 20:58:55 +08:00
{
2019-07-06 18:39:32 +08:00
"name": "webserver",
"version": "3.1.0",
2019-03-28 20:58:55 +08:00
"private": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest --colors test/*.ts",
"newman": "newman run test/renderstreaming.postman_collection.json",
"start": "node ./build/index.js",
"dev": "ts-node ./src/index.ts",
"lint": "eslint src/**/*.ts test/**/*.ts",
"pack": "pkg ."
},
2019-03-28 20:58:55 +08:00
"dependencies": {
"@types/express": "^4.17.13",
2022-09-07 08:57:53 +08:00
"@types/node": "^18.7.15",
"@types/ws": "^8.5.3",
"debug": "~4.3.4",
"express": "~4.18.1",
"morgan": "^1.10.0",
2022-09-07 08:57:53 +08:00
"uuid": "^9.0.0",
"ws": "^8.8.1"
},
"devDependencies": {
2022-09-07 08:57:53 +08:00
"@jest-mock/express": "^2.0.1",
"@types/jest": "^29.0.0",
"@types/morgan": "^1.9.3",
2022-09-07 08:57:53 +08:00
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-plugin-jest": "^27.0.1",
"jest": "^29.0.2",
"jest-websocket-mock": "^2.4.0",
"mock-socket": "^9.1.5",
"newman": "^5.3.2",
2022-09-07 08:57:53 +08:00
"pkg": "^5.8.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"bin": {
"webserver": "build/index.js"
},
"pkg": {
"assets": [
"client/public/**/*",
"client/src/**/*"
],
"targets": [
"node10"
]
2019-03-28 20:58:55 +08:00
}
}