mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
15 lines
362 B
JavaScript
15 lines
362 B
JavaScript
'use strict';
|
|
|
|
const pkg = require('../../package.json');
|
|
const _ = require('lodash');
|
|
|
|
let dependencies = Object.keys(pkg.dependencies);
|
|
// remove jquery so we can add it first
|
|
// remove rxjs so we can only depend on parts of it in code
|
|
_.pull(dependencies, 'jquery', 'rxjs')
|
|
|
|
// add jquery first
|
|
dependencies.unshift('jquery');
|
|
|
|
module.exports = dependencies;
|