Skip to content
Snippets Groups Projects
package.json 1.64 KiB
Newer Older
  • Learn to ignore specific revisions
  • Romain CREY's avatar
    Romain CREY committed
    {
      "name": "egl-api-connector",
      "version": "1.0.0",
      "description": "",
      "repository": {
        "type": "git",
        "url": "git+https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git"
      },
      "keywords": [],
      "author": "Cozy Cloud",
      "license": "AGPL-3.0",
      "main": "./src/index.js",
      "eslintConfig": {
        "extends": [
          "cozy-app"
        ]
      },
      "eslintIgnore": [
        "build"
      ],
      "husky": {
        "hooks": {
          "pre-commit": "yarn lint"
        }
      },
      "scripts": {
        "start": "node ./src/index.js",
        "dev": "cozy-konnector-dev",
        "standalone": "cozy-konnector-standalone",
        "pretest": "npm run clean",
        "test": "konitor testit .",
        "check": "konitor check .",
        "clean": "rm -rf ./data",
        "build": "webpack",
        "lint": "eslint --fix .",
        "deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git}",
        "cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
        "travisDeployKey": "./bin/generate_travis_deploy_key"
      },
      "dependencies": {
        "cozy-konnector-libs": "4.15.7",
        "moment": "^2.24.0",
        "moment-timezone": "^0.5.26"
      },
      "devDependencies": {
        "copy-webpack-plugin": "5.0.3",
        "cozy-app-publish": "0.15.0",
        "cozy-jobs-cli": "1.8.8",
        "eslint": "5.16.0",
        "eslint-config-cozy-app": "1.1.12",
        "eslint-plugin-prettier": "3.0.1",
        "git-directory-deploy": "1.5.1",
        "husky": "2.2.0",
        "konitor": "0.10.2",
        "svgo": "1.2.2",
        "webpack": "4.30.0",
        "webpack-cli": "3.3.1"
      }
    }