forked from atlassian/github-for-jira
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.46 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
{
"name": "jira",
"private": true,
"repository": "https://github.com/integrations/jira.git",
"scripts": {
"ci": "npm test && npm run lint",
"dev": "nodemon --exec \"node --inspect ./lib/run.js\"",
"dev:worker": "nodemon --exec \"node --inspect=9230 bin/worker\"",
"lint": "eslint lib test bin/worker",
"start": "node --no-deprecation ./lib/run.js",
"test": "jest --forceExit",
"posttest": "npm run lint",
"test:watch": "jest --watch --notify --notifyMode=change",
"worker": "node --no-deprecation bin/worker"
},
"dependencies": {
"@atlaskit/css-reset": "^2.0.5",
"@atlaskit/reduced-ui-pack": "^8.19.0",
"@octokit/auth-app": "^2.6.0",
"@sentry/integrations": "^5.15.5",
"@sentry/node": "^5.15.5",
"atlassian-jwt": "^0.1.5",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"bottleneck": "^2.19.5",
"bull": "^3.12.1",
"bunyan-sentry-stream": "^1.2.1",
"cookie-session": "^2.0.0-rc.1",
"csurf": "^1.11.0",
"date-fns": "^1.29.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-sslify": "^1.2.0",
"express-validator": "^6.4.1",
"hbs": "^4.1.2",
"helmet": "^3.21.2",
"hot-shots": "^7.4.1",
"ioredis": "^4.16.3",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moo": "^0.5.0",
"newrelic": "^6.2.0",
"pg": "^7.4.3",
"primer": "^10.6.0",
"probot": "^9.11.3",
"rate-limit-redis": "^1.7.0",
"request": "^2.88.0",
"sequelize": "^5.21.7",
"sequelize-cli": "^5.5.1",
"sequelize-encrypted": "^1.0.0",
"throng": "^4.0.0"
},
"devDependencies": {
"@types/bull": "^3.12.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^16.1.1",
"eslint-plugin-no-only-tests": "^2.3.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"jest": "^26.6.3",
"jest-diff": "^25.4.0",
"jest-extended": "^0.11.5",
"keygrip": "^1.0.2",
"nock": "^9.6.1",
"nodemon": "^2.0.3",
"react": "^16.6.0",
"smee-client": "^1.0.1",
"supertest": "^4.0.2",
"testdouble": "^3.12.4",
"testdouble-jest": "^2.0.0",
"testdouble-nock": "^0.2.0"
},
"engines": {
"node": ">= 12.x < 13"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/setup",
"jest-extended"
],
"globalTeardown": "<rootDir>/test/teardown"
}
}