Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
iamnapo committed May 18, 2021
1 parent 7f7eb45 commit 4a419b7
Show file tree
Hide file tree
Showing 10 changed files with 832 additions and 1,307 deletions.
2,112 changes: 815 additions & 1,297 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 9 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,23 @@
"type": "module",
"exports": "./src/index.js",
"scripts": {
"generate-report": "nyc report --reporter=text-lcov > coverage.lcov",
"initDB": "node src/dev/initDB.js",
"lint": "eslint . --cache",
"start": "node src/index.js",
"test": "npm run lint && nyc ava -vs"
"test": "npm run lint && c8 ava -vs"
},
"eslintConfig": {
"extends": "iamnapo",
"ignorePatterns": "library/*"
},
"dependencies": {
"chalk": "^4.1.1",
"dotenv": "^9.0.0",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mathjs": "^9.3.2",
"mathjs": "^9.4.0",
"mongodb": "^3.6.6",
"mongoose": "^5.12.7",
"mongoose": "^5.12.9",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"natural": "^5.0.3",
Expand All @@ -44,17 +43,17 @@
},
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.7.2",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-iamnapo": "^14.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-config-iamnapo": "^15.0.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^31.0.0",
"eslint-plugin-unicorn": "^32.0.1",
"got": "^11.8.2",
"jsdoc": "^3.6.6",
"nyc": "^15.1.0",
"jsdoc": "^3.6.7",
"test-listen": "^1.1.0"
},
"engines": {
Expand Down
1 change: 1 addition & 0 deletions src/dev/fill-with-funcs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { createRequire } from "node:module";

import shell from "shelljs";

import Concept from "../models/concept.js";
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "dotenv/config";
import { fileURLToPath } from "node:url";
import fs from "node:fs";
import path from "node:path";

import express from "express";
import mongoose from "mongoose";
import morgan from "morgan";
Expand Down
1 change: 1 addition & 0 deletions src/routes/call-by-meaning-routes.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-disable import/no-dynamic-require */
import { createRequire } from "node:module";

import express from "express";
import request from "request";
import * as math from "mathjs";
Expand Down
1 change: 1 addition & 0 deletions src/routes/new-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { fileURLToPath } from "node:url";
import fs from "node:fs";
import path from "node:path";

import express from "express";
import multer from "multer";

Expand Down
1 change: 1 addition & 0 deletions test/call-by-meaning.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import http from "node:http";

import test from "ava";
import got from "got";
import listen from "test-listen";
Expand Down
1 change: 1 addition & 0 deletions test/get-by-meaning.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import http from "node:http";

import test from "ava";
import got from "got";
import listen from "test-listen";
Expand Down
1 change: 1 addition & 0 deletions test/get-by-name.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import http from "node:http";

import test from "ava";
import got from "got";
import listen from "test-listen";
Expand Down
1 change: 1 addition & 0 deletions test/init.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import http from "node:http";

import test from "ava";
import got from "got";
import listen from "test-listen";
Expand Down

0 comments on commit 4a419b7

Please # to comment.