-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.07 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
{
"name": "vite-reactts-eslint-prettier",
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"type-check": "tsc",
"test": "vitest",
"test-cov": "vitest --coverage",
"start": "react-scripts --max_old_space_size=4096 start",
"predeploy": "react-scripts --max_old_space_size=4096 build"
},
"dependencies": {
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/x-charts": "^7.21.0",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.7.7",
"graphviz-react": "^1.2.5",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-lazylog": "^4.5.3",
"react-pro-sidebar": "^1.1.0-alpha.1",
"react-redux": "^8.1.2",
"react-router-dom": "^6.27.0",
"react-zoom-pan-pinch": "^3.6.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.3.12",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.3.1",
"@types/react-lazylog": "^4.5.1",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^0.34.2",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^2.5.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^4.5.5",
"vitest": "^0.34.2"
},
"pre-commit": "lint",
"license": "MIT"
}