forked from atlassian/github-for-jira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.34 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
90
91
{
"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": "standard --fix",
"es": "eslint",
"start": "node --no-deprecation ./lib/run.js",
"test": "standard && jest --forceExit",
"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",
"@sentry/integrations": "^5.8.0",
"@sentry/node": "^5.9.0",
"atlassian-jwt": "^0.1.5",
"axios": "^0.18.1",
"body-parser": "^1.18.3",
"bottleneck": "2.9.0",
"bull": "^3.12.1",
"bunyan-sentry-stream": "^1.2.1",
"cookie-session": "^2.0.0-beta.3",
"csurf": "^1.9.0",
"date-fns": "^1.29.0",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"helmet": "^3.21.2",
"hot-shots": "^6.3.0",
"markdown": "^0.5.0",
"moment": "^2.24.0",
"moo": "^0.5.0",
"newrelic": "^6.2.0",
"npm-why": "^1.1.8",
"pg": "^7.4.3",
"primer": "^10.6.0",
"probot": "^7.5.3",
"probot-config": "^0.2.0",
"request": "^2.88.0",
"sequelize": "^4.44.3",
"sequelize-cli": "^4.1.1",
"sequelize-encrypted": "^1.0.0",
"throng": "^4.0.0"
},
"devDependencies": {
"@types/bull": "^3.3.19",
"babel-eslint": "^10.0.3",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"keygrip": "^1.0.2",
"nock": "^9.6.1",
"nodemon": "^1.17.2",
"react": "^16.6.0",
"smee-client": "^1.0.1",
"standard": "^11.0.1",
"supertest": "^3.3.0",
"testdouble": "^3.12.4",
"testdouble-jest": "^2.0.0",
"testdouble-nock": "^0.2.0"
},
"engines": {
"node": ">= 12.x < 13"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup"
],
"globalTeardown": "./test/teardown"
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"global": [
"td",
"app",
"nock"
]
}
}