-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1003 Bytes
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",
"prettier:": "npm run prettier:write",
"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.57.0",
"axios": "^1.17.0",
"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.3.0",
"lucide-static": "^1.18.0",
"node-schedule": "^2.1.1",
"nodemon": "^3.1.14",
"pug": "^3.0.4",
"redis": "^6.0.0",
"semver": "^7.8.4",
"simple-icons": "^16.23.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"prettier": "^3.8.4"
}
}