-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.44 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.44 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "bwmon",
"description": "Bandwidth Monitor",
"version": "3.1.6",
"homepage": "/bwmon/",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest --watch --maxWorkers=50%",
"test:once": "jest --maxWorkers=50%",
"test:coverage": "jest --coverage --maxWorkers=50%",
"test:CI": "jest --coverage --runInBand",
"test:e2e": "npx playwright test",
"test:mutation": "npx stryker run",
"pretty": "prettier --write \"src/**/*.{js,jsx,json,mjs}\"",
"audit": "better-npm-audit audit -p -l high",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"scan": "node scan-suspicious.js",
"outdated": "npm outdated --color=always | grep -viE \"beta|alpha\"",
"duplication": "jscpd src",
"clean": "npm cache clean --force",
"analyze": "vite build",
"suspicious": "node scan-suspicious.js"
},
"dependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"apexcharts": "^5.3.6",
"luxon": "^3.7.2",
"react": "^19.2.4",
"react-apexcharts": "^1.9.0",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.0",
"react-router": "^7.13.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.3",
"@playwright/test": "^1.58.2",
"@stryker-mutator/core": "^9.5.1",
"@stryker-mutator/jest-runner": "^9.5.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.4",
"babel-jest": "^30.2.0",
"babel-preset-vite": "^1.1.3",
"better-npm-audit": "^3.11.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-security": "^3.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"jscpd": "^4.0.8",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"rollup-plugin-visualizer": "^6.0.5",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"trailingComma": "es5",
"printWidth": 132,
"tabWidth": 4,
"singleQuote": true,
"endOfLine": "auto"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}