-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "gh-issues-finder",
"version": "1.0.0",
"description": "Tool to help find issues hat you can contribute to",
"main": "server.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "tap test/*.js",
"prepare": "husky",
"start": "node .",
"dev": "nodemon ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/bench-template.git"
},
"engines": {
"node": "<22.0.0"
},
"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.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"pino-pretty": "^13.0.0",
"prettier": "^2.8.1",
"sinon": "^19.0.2",
"tap": "^21.0.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@dancastillo/cache": "^1.1.0",
"@fastify/cors": "^9.0.1",
"@octokit/rest": "^20.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.0",
"node-fetch": "^2.7.0"
}
}