generated from upptime/upptime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "repo-monitor-action",
"version": "1.8.0",
"repository": "https://github.com/buluma/repo-monitor-action.git",
"author": "Florian Richter <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"release": "npx standard-version",
"commit": "git add . && npx git-cz --disable-emoji",
"test": "jest"
},
"jest": {
"forceExit": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"text-summary",
"json-summary"
],
"setupFiles": [
"./test/setupTests.ts"
],
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.dev.json"
}
}
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/react-dom": "^18.2.23",
"dayjs": "^1.11.10",
"js-yaml": "^4.1.0",
"purgecss": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-vis": "^1.12.1",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@testing-library/react": "^14.2.2",
"@types/chart.js": "^2.9.41",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18.2.73",
"@types/react-vis": "^1.11.15",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jsdom-screenshot": "^4.0.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}