Skip to content

Commit

Permalink
chore(package): Update minor API deps and Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danactive committed May 15, 2021
1 parent d567baa commit 5a15b51
Show file tree
Hide file tree
Showing 12 changed files with 1,016 additions and 495 deletions.
1,471 changes: 996 additions & 475 deletions api/package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@
"camelcase": "^6.2.0",
"clone": "^2.1.1",
"dot-prop": "^5.3.0",
"dotenv": "^8.2.0",
"dotenv": "^8.6.0",
"dropbox": "^4.0.30",
"extend": "^3.0.0",
"file-loader": "^6.2.0",
"geojson": "^0.5.0",
"glob": "^7.1.6",
"glob": "^7.1.7",
"gm": "^1.23.0",
"hapi-react-views": "^10.1.3",
"hapi-swagger": "^13.1.0",
"isomorphic-fetch": "^2.2.1",
"jquery-colorbox": "^1.6.4",
"mime-types": "^2.1.28",
"node-notifier": "^9.0.0",
"mime-types": "^2.1.30",
"node-notifier": "^9.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sharp": "^0.25.4",
Expand All @@ -59,24 +59,24 @@
},
"devDependencies": {
"@hapi/wreck": "^15.1.0",
"@mapbox/geojsonhint": "^3.0.0",
"@mapbox/geojsonhint": "^3.0.1",
"calipers": "^2.0.0",
"calipers-jpeg": "^2.0.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.1.0",
"css-loader": "^2.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^23.6.0",
"jsdom": "^15.2.1",
"lodash": "^4.17.20",
"lodash": "^4.17.21",
"nyc": "^14.1.1",
"standard-version": "^8.0.2",
"tape": "^4.13.3",
Expand Down
2 changes: 1 addition & 1 deletion api/server/lib/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const libResize = require('../plugins/resize/lib');
const libWalk = require('../plugins/walk/lib');
const libVideo = require('../plugins/video/lib');

const pkg = require('../../package');
const pkg = require('../../package.json');

const plugins = [
inert,
Expand Down
2 changes: 1 addition & 1 deletion api/server/plugins/album/components/album.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const React = require('react');

const Thumb = require('./thumb.jsx');
const Thumb = require('./thumb');

function Album({ album }) {
const thumbs = album.items.map((item) => <Thumb key={item.$.id} item={item} />);
Expand Down
2 changes: 1 addition & 1 deletion api/server/plugins/album/components/page.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const React = require('react');

const Album = require('./album.jsx');
const Album = require('./album');

const clearLeft = { clear: 'left' };

Expand Down
2 changes: 1 addition & 1 deletion api/server/plugins/album/lib/browser.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
require('../public/colorbox.css');
require('jquery-colorbox/jquery.colorbox-min.js');
require('jquery-colorbox/jquery.colorbox-min');
2 changes: 1 addition & 1 deletion api/server/plugins/editAlbum/lib/browser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const AppComponent = require('../components/gallery.jsx');
const AppComponent = require('../components/gallery');
const browser = require('../../../lib/browser');

browser.renderComponentToDom({ AppComponent, domSelector: '#galleryDropdown' });
2 changes: 1 addition & 1 deletion api/server/plugins/home/components/page.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const React = require('react');

const Gallery = require('./gallery.jsx');
const Gallery = require('./gallery');

function Page({ galleries }) {
const galleryList = galleries.map((gallery) => <Gallery key={gallery} gallery={gallery} />);
Expand Down
2 changes: 1 addition & 1 deletion api/server/plugins/utils/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const lib = require('./lib/utils.js');
const lib = require('./lib/utils');

module.exports = lib;
2 changes: 1 addition & 1 deletion api/server/plugins/video/components/page.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const React = require('react');

const Video = require('./video.jsx');
const Video = require('./video');

const body = { margin: 0, padding: 0 };

Expand Down
4 changes: 2 additions & 2 deletions api/server/plugins/video/components/video.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ const React = require('react');

const utils = require('../../utils');

const Source = require('./source.jsx');
const Track = require('./track.jsx');
const Source = require('./source');
const Track = require('./track');

const components = { Source, Track };

Expand Down
2 changes: 1 addition & 1 deletion api/tuxfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const credentials = require('./server/credentials.js');
const credentials = require('./server/credentials');

const harnesses = [];

Expand Down

0 comments on commit 5a15b51

Please sign in to comment.