Create a graph and get the dependenciesOf the block `page`.
// Create a graph from the dependencies list.
const graph = deps.buildGraph(dependencies);
// Now you can use any functions from the @bem/sdk.graph package.
// For example, show sorted dependencies of the block `page`.
graph.dependenciesOf({ block: 'page'});