{
  "name": "TODO",
  "description": "TODO",
  "version": "0.0.1",
  "scripts": {
    "lint": "standard",
    "dev": "npm run build-svg && run-p --race build-sass-watch serve",
    "serve": "node server.js",
    "build": "npm run globalize-css && npm run build-sass && npm run build-svg && sapper build && npm run deglobalize-css",
    "start": "cross-env NODE_ENV=production node server.js",
    "build-and-start": "run-s build start",
    "build-svg": "node ./bin/build-svg.js",
    "build-sass": "node ./bin/build-sass.js",
    "build-sass-watch": "node ./bin/build-sass.js --watch",
    "run-mastodon": "node ./bin/run-mastodon",
    "run-testcafe": "cross-env-shell testcafe --hostname localhost --skip-js-errors $BROWSER tests/spec",
    "test": "cross-env BROWSER=chrome:headless npm run test-browser",
    "test-browser": "run-p --race run-mastodon dev test-mastodon",
    "test-mastodon": "run-s wait-for-mastodon-to-start run-testcafe",
    "wait-for-mastodon-to-start": "node bin/wait-for-mastodon-to-start.js",
    "globalize-css": "node ./bin/globalize-css.js",
    "deglobalize-css": "node ./bin/globalize-css.js --reverse",
    "backup-mastodon-data": "pg_dump -Fc mastodon_development > fixtures/dump.sql && cd mastodon/public/system && tar -czf ../../../fixtures/system.tgz ."
  },
  "dependencies": {
    "@gamestdio/websocket": "^0.2.2",
    "a11y-dialog": "^4.0.1",
    "cheerio": "^1.0.0-rc.2",
    "child-process-promise": "^2.2.1",
    "chokidar": "^2.0.0",
    "compression": "^1.7.1",
    "cross-env": "^5.1.3",
    "css-loader": "^0.28.7",
    "express": "^4.16.2",
    "extract-text-webpack-plugin": "^3.0.2",
    "fg-loadcss": "^2.0.1",
    "font-awesome-svg-png": "^1.2.2",
    "glob": "^7.1.2",
    "idb-keyval": "^2.3.0",
    "indexeddb-getall-shim": "^1.3.1",
    "intersection-observer": "^0.5.0",
    "lodash": "^4.17.4",
    "lodash-webpack-plugin": "^0.11.4",
    "mkdirp": "^0.5.1",
    "node-fetch": "^1.7.3",
    "node-sass": "^4.7.2",
    "npm-run-all": "^4.1.2",
    "p-any": "^1.1.0",
    "performance-now": "^2.1.0",
    "pify": "^3.0.0",
    "quick-lru": "^1.1.0",
    "requestidlecallback": "^0.3.0",
    "sapper": "nolanlawson/sapper#fix-style-loader-built",
    "serve-static": "^1.13.1",
    "standard": "^10.0.3",
    "style-loader": "^0.19.1",
    "svelte": "^1.54.0",
    "svelte-extras": "^1.6.0",
    "svelte-loader": "^2.3.3",
    "svelte-transitions": "^1.1.1",
    "svgo": "^1.0.3",
    "testcafe": "^0.19.0-alpha1",
    "timeago.js": "^3.0.2",
    "tiny-queue": "^0.2.1",
    "uglifyjs-webpack-plugin": "^1.1.5",
    "url-search-params": "^0.10.0",
    "webpack": "^3.10.0",
    "webpack-bundle-analyzer": "^2.9.2",
    "workerize-loader": "^1.0.1",
    "yargs": "^10.1.1"
  },
  "engines": {
    "node": ">= 8"
  },
  "standard": {
    "globals": [
      "fetch",
      "IDBKeyRange",
      "IDBObjectStore",
      "indexedDB",
      "requestAnimationFrame",
      "requestIdleCallback",
      "location",
      "localStorage",
      "URLSearchParams",
      "IntersectionObserver",
      "URL",
      "Event",
      "history",
      "performance",
      "self",
      "caches",
      "__routes__",
      "__shell__",
      "__assets__",
      "test",
      "fixture",
      "Element"
    ],
    "ignore": [
      "dist",
      "routes/_utils/asyncModules.js"
    ]
  }
}