This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "@substrate/rfc-bot",
"version": "0.0.0",
"private": true,
"description": "A GitHub bot built with Probot aiming to help in the creation of RFC proposal referenda.",
"author": "Parity Technologies <admin@parity.io> (https://parity.io)",
"license": "MIT",
"homepage": "https://github.com/paritytech/rfc-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "yarn eslint --quiet '{*,**/*}.{js,ts}' && yarn prettier --check '{*,**/*}.json' && yarn typecheck",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.{js,ts}' && yarn fix:prettier '{*,**/*}.json'",
"start": "nodemon",
"build": "rimraf dist; tsc",
"test": "NODE_OPTIONS='--experimental-vm-modules --es-module-specifier-resolution=node' jest"
},
"dependencies": {
"@eng-automation/integrations": "^4.2.2",
"@eng-automation/js": "^1.0.2",
"@polkadot/api": "^10.9.1",
"matrix-js-sdk": "^27.1.0",
"node-fetch": "^2.6.12",
"probot": "^12.3.1",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@eng-automation/js-style": "^2.2.0",
"@resolritter/tsc-files": "^1.1.4",
"@types/jest": "^29.4.0",
"@types/node": "^18.16.18",
"@types/node-fetch": "^2",
"dotenv": "^16.3.1",
"jest": "^29.6.2",
"nodemon": "^2.0.13",
"rimraf": "^3.0.2",
"smee-client": "^1.2.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "^18"
}
}