-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·137 lines (137 loc) · 3.69 KB
/
package.json
File metadata and controls
executable file
·137 lines (137 loc) · 3.69 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "mythic",
"version": "0.1.0",
"private": true,
"homepage": "/new",
"author": "@its_a_feature_",
"description": "React UI for Mythic C2 Framework",
"devDependencies": {
"autoprefixer": "^10.4.17",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"postcss": "^8.4.35",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.1",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.1"
},
"dependencies": {
"@apollo/client": "^4.1.6",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"@hello-pangea/dnd": "^18.0.1",
"@mui/icons-material": "^7.0.2",
"@mui/lab": "^7.0.1-beta.23",
"@mui/material": "^7.0.2",
"@mui/utils": "^7.0.2",
"@mui/x-charts": "^8.1.0",
"@mui/x-data-grid": "^8.1.0",
"@mui/x-date-pickers": "^8.1.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@xyflow/react": "^12.6.0",
"ace-builds": "^1.40.1",
"anser": "^2.3.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"elkjs": "^0.11.1",
"framer-motion": "^12.24.7",
"graphql": "^16.10.0",
"graphql-ws": "^6.0.4",
"html-to-image": "^1.11.11",
"ip6": "^0.2.10",
"json5": "^2.2.3",
"jwt-decode": "^4.0.0",
"lucide-react": "^1.7.0",
"moment": "^2.30.1",
"path-browserify": "^1.0.1",
"randexp": "^0.5.3",
"react": "^19.2.4",
"react-ace": "^14.0.1",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.4",
"react-draggable": "^4.4.6",
"react-moment": "^1.2.2",
"react-router-dom": "^7.14.0",
"react-scrollbar-size": "^5.0.0",
"react-split": "^2.0.14",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.1",
"react-virtualized": "^9.22.6",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^2.2.7",
"rxjs": "^7.8.2",
"semver": "^7.6.2",
"sql.js": "^1.13.0",
"tailwind-merge": "^3.4.0",
"three": "^0.183.2",
"typescript": "^6.0.2",
"uuid": "^13.0.0",
"webpack": "^5.105.0",
"word-wrap": "^1.2.5",
"zustand": "^5.0.9"
},
"scripts": {
"react-start": "CHOKIDAR_USEPOLLING=true WATCHPACK_POLLING=true FAST_REFRESH=true WDS_POLLING=true BROWSER=none PORT=3000 react-app-rewired start",
"react-build": "react-app-rewired build",
"react-test": "react-app-rewired test",
"react-eject": "react-scripts eject",
"build": "npm run react-build",
"start": "BROWSER=none CHOKIDAR_USEPOLLING=true WATCHPACK_POLLING=true FAST_REFRESH=true WDS_POLLING=true PORT=3000 npm run react-start"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": [
"warn",
{
"args": "none",
"ignoreRestSiblings": true,
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none",
"ignoreRestSiblings": true,
"varsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
]
}
},
"babel": {
"presets": [
[
"react-app",
{
"runtime": "automatic"
}
]
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}