-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 852 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
{
"name": "test-coverage-dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "ts-node app/index.ts",
"test": "jest --coverage",
"build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/ejs": "^3.1.1",
"@types/node": "18.11.13",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"chart.js": "^4.0.1",
"ejs": "^3.1.8",
"eslint": "8.29.0",
"react": "18.2.0",
"react-chartjs-2": "^5.0.1",
"react-dom": "18.2.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
}
}