-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "user-report-to-github-issue",
"version": "2.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "npm run test:lint && npm run test:mocha && npm run test:coverage",
"test:lint": "eslint . --max-warnings 0 && prettier . -c -u",
"test:mocha": "mocha",
"test:coverage": "c8 --reporter=lcov --reporter=text mocha",
"lint:fix": "eslint . --fix && prettier . -w -u"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"ky": "^1.7.2",
"cheerio": "^1.1.2",
"fastify": "^5.6.2",
"fluent-json-schema": "^6.0.0",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.1",
"c8": "^10.1.3",
"chai": "^6.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"sinon": "^21.0.1"
}
}