-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "node-badges",
"private": true,
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "npx nodemon src/app.js",
"lint": "npx eslint src",
"lint:report": "npm run lint -- --output-file eslint_report.json --format json",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"start": "node src/app.js"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@octokit/rest": "^22.0.1",
"@sentry/node": "^10.39.0",
"axios": "^1.13.5",
"badge-maker": "^5.0.2",
"camelcase": "^9.0.0",
"chroma-js": "^3.2.0",
"cors": "^2.8.6",
"debug": "^4.4.3",
"express": "^5.2.1",
"jsonpath": "^1.2.1",
"lucide-static": "^0.575.0",
"node-schedule": "^2.1.1",
"nodemon": "^3.1.14",
"pug": "^3.0.3",
"redis": "^5.11.0",
"semver": "^7.7.4",
"simple-icons": "^16.9.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.1",
"prettier": "^3.8.1"
}
}