-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.02 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "clomonitor",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"apexcharts": "3.49.0",
"classnames": "^2.5.1",
"clo-ui": "https://github.com/cncf/clo-ui.git#v0.5.5",
"date-fns": "^4.1.0",
"lodash": "^4.17.23",
"nth-check": "^2.0.1",
"react": "^19.2.0",
"react-apexcharts": "^1.5.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-date-range": "1.4.0",
"react-router-dom": "^7.9.4",
"react-syntax-highlighter": "^16.1.0",
"rehype-external-links": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/js": "^9.38.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-date-range": "^1.4.10",
"@types/react-router-dom": "^5.3.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.4",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.4.0",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^27.0.1",
"minimatch": "10.1.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"shx": "^0.4.0",
"source-map-explorer": "^2.5.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.12",
"vitest": "^4.0.4"
},
"scripts": {
"copy:static": "shx rm -rf src/static && shx mkdir src/static && shx cp -r public/static/* src",
"copy:scorecard": "shx cp public/scorecard.html build",
"copy:manifest": "shx cp public/manifest.json build",
"analyze": "source-map-explorer --no-border-checks 'build/js/*.js'",
"build": "yarn copy:static && vite build && shx cp -r build/static/* build && shx rm -rf build/static && yarn copy:scorecard && yarn copy:manifest",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:diff": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"isready": "yarn format && yarn lint && yarn test --passWithNoTests && yarn build",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --max-warnings 0 --fix",
"start": "yarn copy:static && vite --host",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --passWithNoTests --coverage"
},
"resolutions": {
"react-date-range/date-fns": "2.30.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}