-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 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
{
"name": "copilot-metrics-api",
"version": "1.0.0",
"description": "GitHub Copilot metrics visualization system",
"main": "api/app.js",
"scripts": {
"start": "node api/app.js",
"dev": "nodemon api/app.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@octokit/core": "^5.0.0",
"canvas": "^2.11.0",
"chart.js": "^4.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"moment": "^2.30.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
}
}