-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "honeybrain",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "src/main.tsx",
"scripts": {
"start": "vite --force --host",
"build": "vite build",
"lint": "lint-staged",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.2",
"@mui/styles": "^5.13.2",
"@protobuf-ts/grpcweb-transport": "^2.9.0",
"@protobuf-ts/plugin": "^2.9.0",
"@types/react-router-dom": "^5.3.3",
"chart.js": "^4.4.1",
"grpc-tools": "^1.12.4",
"grpc-web": "^1.4.2",
"i18next": "^23.4.3",
"monaco-editor": "^0.36.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.3",
"react-mobile-app-button": "^1.2.17",
"react-monaco-editor": "^0.52.0",
"react-router-dom": "^5.3.4",
"react-toastify": "^9.1.3",
"reactjs-popup": "^2.0.5",
"vite": "^4.3.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"lint-staged": "^13.2.0",
"prettier": "^3.0.0",
"sass": "^1.70.0",
"typescript": "^5.1.6",
"vite": "^4.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --max-warnings=0"
],
"*.{ts,tsx}": "tsc-files --noEmit --pretty"
}
}