-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.81 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.81 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
{
"name": "droneengage_webclient",
"version": "2.0.0",
"build_number": "20260207-02",
"description": "DroneEngage WebClient GCS Control Station.",
"author": {
"email": "mohammad.hefny@gmail.com",
"name": "Mohammad Said Hefny",
"url": "https://github.com/HefnySco"
},
"keywords": [
"ardupilot",
"px4",
"drone",
"andruav",
"GCS",
"SITL"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DroneEngage/droneengage_webclient"
},
"homepage": "./",
"WEB_SSL_CRT": "./ssl/localssl.crt",
"WEB_SSL_KEY": "./ssl/localssl.key",
"private": true,
"dependencies": {
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"file-saver": "^2.0.5",
"https": "^1.0.0",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"jquery": "^3.7.1",
"jquery-knob": "^1.2.11",
"jquery-ui-dist": "^1.13.3",
"jspack": "^0.0.4",
"leaflet": "^1.8.0",
"leaflet-rotatedmarker": "^0.2.0",
"leaflet.pm": "^2.2.0",
"msr": "^1.3.4",
"popper.js": "^1.16.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-draggable": "^4.5.0",
"react-i18next": "^15.7.3",
"react-router-dom": "^7.8.2",
"react-scripts": "^5.0.1",
"react-simple-captcha": "^9.3.1",
"recordrtc": "^5.6.2",
"underscore": "^1.13.6"
},
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && HTTPS=true SSL_CRT_FILE=$WEB_SSL_KEY SSL_KEY_FILE=$WEB_SSL_KEY react-scripts start",
"build": "react-scripts build --mode production --config-overrides ./webpack.config.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"ignorePatterns": [
"js_mavlink_v2.js"
],
"rules": {
"no-unused-vars": [
"warn",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}
],
"no-const-assign": "error",
"no-undef": "error",
"no-dupe-else-if": "error",
"no-dupe-class-members": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-duplicate-imports": "error",
"no-empty-pattern": "warn",
"no-fallthrough": "warn",
"no-self-assign": "warn",
"no-empty": "warn",
"no-labels": "error"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-webpack-plugin": "^5.0.2"
}
}