-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "kibana-pr-bot",
"private": true,
"license": "Apache 2.0",
"main": "dist/run_server.js",
"scripts": {
"build": "babel src -d dist --delete-dir-on-start -x .ts --ignore **/*.test.ts --source-maps",
"type_check": "tsc --noEmit",
"lint": "yarn eslint . --ext .ts,.js --max-warnings 0",
"test": "yarn type_check && yarn lint && yarn jest"
},
"jest": {
"verbose": true,
"testMatch": [
"**/*.test.[jt]s?(x)"
],
"roots": [
"src/"
],
"setupFiles": [
"dotenv/config"
]
},
"dependencies": {
"@babel/preset-typescript": "^7.8.3",
"@elastic/elasticsearch": "^7.6.1",
"@elastic/elasticsearch-mock": "^0.3.0",
"@hapi/iron": "^6.0.0",
"@spalger/micro-plus": "^0.4.0",
"abort-controller": "^3.0.0",
"axios": "^0.19.2",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"elastic-apm-node": "^3.5.0",
"execa": "^4.0.0",
"getopts": "^2.2.5",
"github-webhook-event-types": "^1.2.1",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"lru_map": "^0.3.3",
"parse-link-header": "^1.0.1",
"rxjs": "^6.5.4",
"source-map-support": "^0.5.16",
"uuid": "^7.0.2",
"winston": "^3.2.1",
"winston-elasticsearch": "^0.17.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@types/jest": "^25.1.4",
"@types/micro": "^7.3.3",
"@types/node": "^18.11.18",
"@types/parse-link-header": "^1.0.0",
"@types/user-home": "^2.0.0",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"typescript": "^4"
},
"engines": {
"node": "16"
}
}