-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 2.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@substrate/substrate-tip-bot",
"version": "0.0.0",
"private": true,
"description": "A GitHub bot to submit tips on behalf of the network.",
"author": "Parity Technologies <admin@parity.io> (https://parity.io)",
"license": "MIT",
"homepage": "https://github.com/paritytech/substrate-tip-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"main": "dist/src/bot.js",
"scripts": {
"build": "rimraf dist; tsc",
"build:docker": "docker build -t substrate-tip-bot .",
"fix": "yarn fix:eslint '{*,**/*}.{js,ts}' && yarn fix:prettier '{*,**/*}.json'",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier --write",
"lint": "npx eslint --quiet '{*,**/*}.{js,ts}' && npx prettier --check '{*,**/*}.json' && yarn typecheck",
"papi": "papi generate",
"postinstall": "yarn papi",
"dev": "concurrently \"tsc -w\" \"node --env-file=.env --watch --enable-source-maps dist/src/bot.js\"",
"start": "node --env-file=.env --enable-source-maps dist/src/bot.js",
"test": "jest",
"test:e2e": "jest -c jest.e2e.config.js",
"test:integration": "jest --runInBand -c jest.integration.config.js",
"typecheck": "tsc --noEmit"
},
"imports": {
"#src/*": "./src/*.js"
},
"dependencies": {
"@eng-automation/integrations": "^4.4.0",
"@eng-automation/js": "^2.2.0",
"@polkadot-api/descriptors": "portal:.papi/descriptors",
"@polkadot-labs/hdkd": "^0.0.6",
"@polkadot-labs/hdkd-helpers": "^0.0.6",
"concurrently": "^8.2.2",
"ethers": "^5.7.2",
"matrix-js-sdk": "^26.1.0",
"polkadot-api": "1.2.0",
"probot": "^12.2.8",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@eng-automation/testing": "^1.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"dotenv": "^16.0.1",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"rxjs": "^7.8.1",
"smee-client": "^1.2.2",
"testcontainers": "^10.13.0",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5"
},
"engines": {
"node": "^22 && !22.5.0"
},
"packageManager": "yarn@4.3.0"
}