seagull-js/seagull

View on GitHub
examples/helloworld/package.json

Summary

Maintainability
Test Coverage
{
  "name": "helloworld",
  "private": true,
  "version": "17.8.0",
  "description": "Helloworld example app using the Seagull Framework",
  "main": "index.js",
  "scripts": {
    "build": "seagull-build",
    "dev": "seagull-dev",
    "deploy": "seagull-deploy-project",
    "diff": "seagull-diff",
    "pipeline": "seagull-deploy-pipeline",
    "start": "node dist/assets/backend/server.js",
    "test": "npm run test:unit",
    "test:unit": "mocha --opts test/mocha.opts",
    "test:unit:watch": "npm run test:unit -- --watch --reporter min",
    "test:e2e": "seagull-e2e"
  },
  "author": "Maximilian Stroh <hisako1337@gmail.com>",
  "license": "LGPL-3.0",
  "devDependencies": {
    "@seagull/build": "^17.8.0",
    "@seagull/commands-logging": "^17.8.0",
    "@seagull/deploy-aws": "^17.8.0",
    "@seagull/test-e2e": "^17.8.0",
    "@seagull/test-pages": "^17.8.0",
    "@seagull/tslint": "^17.8.0",
    "@types/lodash": "^4.14.123",
    "@types/node": "^8.10",
    "jsdom": "^13.0.0",
    "jsdom-global": "^3.0.2",
    "serverless": "^1.32.0",
    "serverless-apigw-binary": "^0.4.4",
    "serverless-prune-plugin": "^1.3.1",
    "typescript": "^3.4.1"
  },
  "dependencies": {
    "@seagull/libraries": "^17.8.0",
    "@seagull/pages": "^17.8.0",
    "@seagull/plugin-items": "^17.8.0",
    "@seagull/routes": "^17.8.0",
    "chart.js": "^2.8.0",
    "instantclick": "^3.1.0-2",
    "lodash": "^4.17.5",
    "mobx": "^4",
    "mobx-react": "^5.4.3",
    "react-chartjs-2": "^2.7.6",
    "serverless-http": "^1.8.0"
  },
  "seagull": {
    "domains": [],
    "vendorBundleIncludes": {
      "add": [
        "lodash/isEqual",
        "lodash/keyBy"
      ]
    }
  }
}