-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 3.1 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
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
109
110
111
112
113
{
"name": "remote-falcon-ui",
"version": "1.0.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.8.10",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@habx/apollo-multi-endpoint-link": "^2.9.0",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.70",
"@mui/material": "^5.7.0",
"@mui/system": "^5.7.0",
"@mui/x-date-pickers": "^5.0.0-alpha.3",
"@reduxjs/toolkit": "^1.8.1",
"@tabler/icons-react": "^3.30.0",
"@vis.gl/react-google-maps": "^1.1.0",
"@vitejs/plugin-react": "^4.3.4",
"apexcharts": "^3.35.2",
"axios": "^1.7.8",
"buffer": "^6.0.3",
"cypress": "^13.13.0",
"date-fns": "^2.28.0",
"formik": "^2.2.9",
"framer-motion": "^4.1.13",
"graphql": "^16.8.1",
"html-to-react": "^1.5.0",
"js-file-download": "^0.4.12",
"json-edit-react": "^1.13.2",
"jwt-decode": "^3.1.2",
"jwt-encode": "^1.0.1",
"loadjs": "^4.3.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mixpanel-browser": "^2.55.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.46",
"posthog-js": "^1.140.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-apexcharts": "^1.4.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-fullscreen-loading": "^0.0.4",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.33.1",
"react-intl": "^5.24.6",
"react-markdown": "^8.0.7",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"remark-breaks": "^3.0.3",
"stylis-plugin-rtl": "^2.1.1",
"typescript": "^4.6.4",
"vite": "^6.2.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"dev": "vite",
"build": "GENERATE_SOURCEMAP=false vite build",
"serve": "vite preview",
"start": "react-scripts start",
"lint": "eslint --fix --ext .js,.jsx ./src",
"nuke-modules": "if [ -d node_modules ]; then rm -rf node_modules; fi",
"cypress:open": "npx cypress open",
"cypress:run": "npx cypress run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"sass": "^1.49.7"
}
}