cocos-creator-multiplayer/examples/custom-http-res/package.json

27 lines
675 B
JSON
Raw Normal View History

2021-06-29 15:48:07 +00:00
{
"name": "custom-http-res-.",
"version": "0.1.0",
"main": "index.js",
"private": true,
"scripts": {
2021-10-07 07:30:02 +00:00
"proto": "tsrpc proto --config tsrpc.config.ts",
"sync": "tsrpc sync --config tsrpc.config.ts",
"api": "tsrpc api --config tsrpc.config.ts",
"dev": "tsrpc dev --config tsrpc.config.ts",
2021-06-29 15:48:07 +00:00
"test": "mocha test/**/*.test.ts",
2021-10-07 07:30:02 +00:00
"build": "tsrpc build --config tsrpc.config.ts"
2021-06-29 15:48:07 +00:00
},
"devDependencies": {
2021-10-07 07:30:02 +00:00
"@types/mocha": "^8.2.3",
"@types/node": "^15.14.9",
"mocha": "^9.1.2",
2021-06-29 15:48:07 +00:00
"onchange": "^7.1.0",
2021-10-07 07:30:02 +00:00
"ts-node": "^10.2.1",
"tsrpc-cli": "^2.0.8",
"typescript": "^4.4.3"
2021-06-29 15:48:07 +00:00
},
"dependencies": {
2021-10-07 07:30:02 +00:00
"tsrpc": "^3.0.9"
2021-06-29 15:48:07 +00:00
}
}