summaryrefslogtreecommitdiffhomepage
path: root/gui/package.json
blob: 200e25d07639d7b118575b84f8bc30d46f5bb040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "private": true,
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "postinstall": "node unpatch-yarn.js",
    "format": "yarn run private:format --write",
    "check-format": "yarn run private:format --list-different",
    "private:format": "prettier \"packages/**/*.{js,css,ts,tsx}\"",
    "pack:mac": "yarn workspace desktop pack:mac",
    "pack:win": "yarn workspace desktop pack:win",
    "pack:linux": "yarn workspace desktop pack:linux"
  },
  "devDependencies": {
    "prettier": "1.15.3"
  }
}