-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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
{
"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 <[email protected]> (https://parity.io)",
"license": "MIT",
"homepage": "https://github.com/paritytech/substrate-tip-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "npx eslint --quiet '{*,**/*}.{js,ts}' && npx prettier --check '{*,**/*}.json' && yarn typecheck",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.{js,ts}' && yarn fix:prettier '{*,**/*}.json'",
"start": "concurrently \"tsc -w\" \"node --watch dist/bot.js\"",
"build": "rimraf dist; tsc",
"test": "jest",
"test:integration": "jest -c jest.integration.config.js",
"test:e2e": "jest -c jest.e2e.config.js"
},
"imports": {
"#src/*": "./src/*.js"
},
"dependencies": {
"@eng-automation/integrations": "^4.4.0",
"@eng-automation/js": "^2.2.0",
"@polkadot/api": "^12.0.2",
"@polkadot/util": "^12.3.2",
"@polkadot/util-crypto": "^12.3.2",
"concurrently": "^8.2.2",
"ethers": "^5.7.2",
"matrix-js-sdk": "^26.1.0",
"probot": "^12.2.8",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@polkadot/keyring": "^12.3.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"dotenv": "^16.0.1",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"smee-client": "^1.2.2",
"testcontainers": "^10.2.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"engines": {
"node": "^22"
},
"packageManager": "[email protected]"
}