package.json 1.39 KB
Newer Older
Shawn Tabrizi's avatar
Shawn Tabrizi committed
1
{
2
  "name": "@substrate/substrate-tip-bot",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
3
4
5
  "version": "1.0.0",
  "private": true,
  "description": "A GitHub bot to submit tips on behalf of the network.",
6
7
8
  "author": "Parity Technologies <admin@parity.io> (https://parity.io)",
  "license": "MIT",
  "homepage": "https://github.com/paritytech/substrate-tip-bot",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
9
10
11
12
13
14
  "keywords": [
    "probot",
    "github",
    "probot-app"
  ],
  "scripts": {
JP's avatar
JP committed
15
16
17
18
    "typecheck": "tsc --noEmit",
    "fix:eslint": "eslint --fix",
    "fix:prettier": "prettier --write",
    "fix": "yarn fix:eslint '{*,**/*}.{js,ts}' && yarn fix:prettier '{*,**/*}.json'",
19
    "start": "nodemon",
JP's avatar
JP committed
20
    "build": "rimraf dist; babel src/ --extensions '.ts,.js' --out-dir dist/"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
21
22
  },
  "dependencies": {
Shawn Tabrizi's avatar
Shawn Tabrizi committed
23
24
    "@polkadot/api": "^8.1.1",
    "@polkadot/util-crypto": "^9.0.1",
JP's avatar
JP committed
25
    "opstooling-js": "https://github.com/paritytech/opstooling-js#v0.0.3",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
26
27
28
    "probot": "^11.0.1"
  },
  "devDependencies": {
29
30
31
    "@babel/cli": "^7.15.7",
    "@babel/core": "^7.15.8",
    "@babel/preset-env": "^7.15.8",
32
    "@babel/preset-typescript": "^7.15.0",
JP's avatar
JP committed
33
    "@resolritter/tsc-files": "^1.1.4",
34
    "@types/node": "^16.10.3",
JP's avatar
JP committed
35
    "dotenv": "^16.0.1",
36
    "nodemon": "^2.0.13",
JP's avatar
JP committed
37
    "opstooling-js-style": "https://github.com/paritytech/opstooling-js-style#master",
38
    "rimraf": "^3.0.2",
39
40
41
    "smee-client": "^1.2.2",
    "ts-node": "^10.3.0",
    "typescript": "^4.4.3"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
42
43
44
45
46
  },
  "engines": {
    "node": ">= 10.13.0"
  }
}