Usually it is just a list of all folders in src/services
but you can also get a dynamic list as shown in the documentation for app.services. This can be quickly turned into a command like this:
// list-services.js
const app = require('./src/app');
const serviceList = Object.keys(app.services);
console.log(serviceList.join('
');
Now you can run this with node list-services
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…