-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "gh-issues-finder",
"version": "1.0.0",
"description": "Tool to help find issues hat you can contribute to",
"main": "server.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "c8 --100 node --test",
"prepare": "husky",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/bench-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/gh-issues-finder/issues"
},
"homepage": "https://github.com/nearform/gh-issues-finder#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"neostandard": "^0.12.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@octokit/rest": "^21.0.2",
"async-cache-dedupe": "^2.2.0",
"fastify": "^5.2.0"
}
}