Commit 53b9c069 authored by Jay Laura's avatar Jay Laura
Browse files

Moves files to root level

parent 05b34d04
Loading
Loading
Loading
Loading
+0 −0

File moved.

+0 −0

File moved.

app/.babelrc

deleted100644 → 0
+0 −44
Original line number Diff line number Diff line
{
  "presets": [
    "airbnb",
    [
      "@babel/preset-env",
      {
        "modules": false
      }
    ]
  ],
  "plugins": [

    ["@babel/plugin-transform-runtime",
      {
        "regenerator": true
      }
    ],

    [
      "babel-plugin-import",
      {
        "libraryName": "@mui/material",
        "libraryDirectory": "esm",
        "camel2DashComponentName": false
      },
      "core"

    ],
    [
      "babel-plugin-import",
      {
        "libraryName": "@mui/icons-material",
        "libraryDirectory": "esm",
        "camel2DashComponentName": false
      },
      "icons"
    ]
  ],
  "env": {
    "production": {
      "presets": ["minify"]
    }
  }
}

app/.gitignore

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
.cache/
coverage/
docs/
dist/
dist/*
.dist/
node_modules
package-lock.json
*.log

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

app/.jsdoc.json

deleted100644 → 0
+0 −27
Original line number Diff line number Diff line
{
  "tags": {
    "allowUnknownTags": true,
    "dictionaries": ["jsdoc"]
  },
  "source": {
    "include": ["package.json", "README.md"],
    "includePattern": "./src/js/",
    "excludePattern": "(node_modules/|docs)"
  },
  "plugins": ["plugins/markdown"],
  "templates": {
    "referenceTitle": "GeoSTAC",
    "disableSort": false,
    "collapse": false,
    "resources": {
      "GitHub": "https://github.com/GeoSTAC/CartoCosmos-with-STAC"
    }
  },
  "opts": {
    "destination": "./docs/",
    "encoding": "utf8",
    "private": true,
    "recurse": true,
    "template": "node_modules/braintree-jsdoc-template/"
  }
}
Loading