Skip to content
Snippets Groups Projects
package.json 1.47 KiB
Newer Older
{
  "name": "xpub",
Alf Eaton's avatar
Alf Eaton committed
  "version": "0.0.0",
  "private": true,
  "license": "MIT",
  "devDependencies": {
Alf Eaton's avatar
Alf Eaton committed
Alf Eaton's avatar
Alf Eaton committed
  },
  "repository": {
    "type": "git",
    "url": "git@gitlab.coko.foundation:xpub/xpub.git"
    "clean": "lerna clean && rm -rf node_modules",
    "lint": "eslint packages",
    "precommit": "lint-staged",
    "styleguide": "cd packages/styleguide && yarn styleguide",
Bogdan Cochior's avatar
Bogdan Cochior committed
    "test": "lerna run test",
    "start": "docker-compose up"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "git add"
Yannis Barlas's avatar
Yannis Barlas committed
    ],
    "*.css": "stylelint",
    "*.scss": "stylelint"
Alf Eaton's avatar
Alf Eaton committed
  },
  "engines": {
Alf Eaton's avatar
Alf Eaton committed
    "node": ">=8",
    "yarn": ">=1.2"
  },
  "workspaces": [
    "packages/*"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }