cocos-creator-multiplayer/examples/user-authentication/backend/package.json

26 lines
541 B
JSON
Raw Normal View History

2021-06-14 12:57:26 +00:00
{
"name": "user-authentication-backend",
"version": "0.1.0",
"main": "index.js",
"private": true,
"scripts": {
2021-12-25 10:33:59 +00:00
"proto": "tsrpc proto",
"sync": "tsrpc sync",
"api": "tsrpc api",
"doc": "tsrpc doc",
"dev": "tsrpc dev",
"build": "tsrpc build"
2021-06-14 12:57:26 +00:00
},
"devDependencies": {
2021-10-07 07:30:02 +00:00
"@types/node": "^15.14.9",
"@types/uuid": "^8.3.1",
2021-06-14 12:57:26 +00:00
"onchange": "^7.1.0",
"ts-node": "^9.1.1",
2021-10-07 07:30:02 +00:00
"tsrpc-cli": "^2.0.8",
"typescript": "^4.4.3"
2021-06-14 12:57:26 +00:00
},
"dependencies": {
2021-10-07 07:30:02 +00:00
"tsrpc": "^3.0.9",
2021-06-14 12:57:26 +00:00
"uuid": "^8.3.2"
}
2021-12-25 10:33:59 +00:00
}