This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "command-bot",
"description": "command-bot",
"version": "0.0.0",
"author": "Parity <[email protected]> (https://parity.io)",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://opensource.org/licenses/Apache-2.0"
}
],
"dependencies": {
"@eng-automation/js": "^0.0.21",
"@eng-automation/js-style": "^2.0.0",
"@octokit/auth-token": "3.0.0",
"@octokit/rest": "19.0.3",
"@octokit/webhooks": "10.0.0",
"@types/node-fetch": "^2.6.2",
"@types/pug": "^2.0.6",
"async-mutex": "0.3.2",
"commander": "^11.0.0",
"date-fns": "2.28.0",
"express-prom-bundle": "^6.6.0",
"glob": "^8.0.3",
"joi": "^17.6.0",
"level-rocksdb": "5.0.0",
"lodash": "4.17.21",
"node-fetch": "^2.6.7",
"probot": "^12.3.3",
"prom-client": "^14.2.0",
"pug": "^3.0.3",
"stoppable": "1.1.0",
"ts-node": "^10.7.0",
"yaml": "^2.2.2",
"yargs": "^17.5.0"
},
"devDependencies": {
"@octokit/auth-app": "4.0.4",
"@resolritter/tsc-files": "^1.1.4",
"@types/abstract-leveldown": "7.2.0",
"@types/jest": "^29.0.0",
"@types/levelup": "5.1.1",
"@types/lodash": "4.14.181",
"@types/node": "^18",
"@types/rocksdb": "3.0.1",
"@types/shelljs": "0.8.11",
"@types/stoppable": "1.1.1",
"@types/yargs": "^17.0.10",
"copyfiles": "^2.4.1",
"jest": "^29.0.0",
"json-schema-to-typescript": "^11.0.2",
"mockttp": "^3.6.2",
"nodemon": "2.0.19",
"prettier": "^2.7.1",
"selfsigned": "^2.1.0",
"smee-client": "^1.2.3",
"ts-jest": "^29.0.0",
"ts-patch": "^2.1.0",
"typescript": "4.6.3",
"typescript-transform-paths": "^3.4.4"
},
"scripts": {
"prepare": "ts-patch install -s",
"schema": "json2ts -i ./src/schema/schema.cmd.json -o ./src/schema/schema.cmd.d.ts",
"pretest:unit": "yarn schema",
"test:unit": "jest --passWithNoTests -c jest.unit.config.cjs",
"pretest:integration": "yarn build",
"test:integration": "node --experimental-vm-modules node_modules/.bin/jest --runInBand -c jest.integration.config.cjs",
"test": "yarn test:unit && yarn test:integration",
"prelint": "yarn schema",
"lint": "yarn eslint && yarn typecheck && yarn prettier",
"typecheck": "tsc --noEmit",
"prettier": "prettier --check --loglevel silent '{*,**/*}.{json,html}'",
"eslint": "eslint --quiet '{*,**/*}.{cjs,ts}'",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.{cjs,ts}' && yarn fix:prettier '{*,**/*}.json'",
"prebuild": "yarn schema",
"clean": "rm -rf build/",
"build": "yarn clean && tsc && copyfiles -u 1 src/**/*.pug build/",
"start": "TS_NODE_BASEURL=./build node ./build/main.js",
"dev": "yarn schema && nodemon --no-update-notifier -- ./src/main.ts"
},
"//": "Override to solve JSON5 vulnerability. Cleanup once eslint-plugin-import releases the update of deps",
"resolutions": {
"@eng-automation/js-style/**/tsconfig-paths": "^4.0.0"
}
}