-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
109 lines (109 loc) · 2.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "plugin-site-issues",
"version": "0.3.0",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "node ./dist/bin/www",
"build": "tsc",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"test": "ava --timeout=2m",
"dev": "nodemon",
"dev:debug": "nodemon --inspect-brk"
},
"main": "./src/bin/www.ts",
"dependencies": {
"@octokit/auth-app": "^3.6.1",
"@octokit/request": "^5.6.3",
"@octokit/rest": "^18.12.0",
"axios": "^0.29.0",
"cors": "^2.8.5",
"express": "~4.21.0",
"express-async-handler": "^1.2.0",
"express-prom-bundle": "^6.4.1",
"express-youch": "^1.0.1",
"find-package-json": "^1.2.0",
"get-routes": "^2.1.6",
"helmet": "^5.0.2",
"http-graceful-shutdown": "^3.1.7",
"jira-client": "^8.1.0",
"morgan": "~1.10.0",
"normalize-url": "^7.0.3",
"prom-client": "^14.0.1",
"remark": "^14.0.2",
"remark-breaks": "^3.0.2",
"remark-emoji": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.2",
"remark-html": "^15.0.1",
"typescript-memoize": "^1.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^5.0.0",
"@types/find-package-json": "^1.2.2",
"@types/jira-client": "^7.1.4",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"ava": "6.2.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"json-parse-better-errors": "^1.0.2",
"json-stable-stringify": "^1.0.1",
"nock": "^14.0.0",
"node-mocks-http": "^1.11.0",
"nodemon": "^3.0.0",
"object-hash": "^3.0.0",
"sinon": "^19.0.0",
"supertest": "^7.0.0",
"tap-xunit": "^2.4.1",
"temp-write": "^6.0.0",
"testdouble": "^3.16.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"nodemonConfig": {
"restartable": "rs",
"env": {
"DEBUG": "plugin-site-issues:*",
"NODE_ENV": "development"
},
"ignore": [
".git",
"node_modules/",
"dist/",
"coverage/"
],
"watch": [
"./package.json",
"./src"
],
"ext": "js,json,ts",
"execMap": {
"ts": "node --loader ts-node/esm"
}
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
],
"require": [
"./src/setupAva.ts"
]
}
}