-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 2.53 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
{
"name": "tiplot",
"version": "1.2.5",
"private": true,
"homepage": "./",
"proxy": "http://localhost:5000",
"author": "Hamza ZOGHMAR <hamza@tilak.io> tilak.io",
"description": "Cool and simple visualising tool to analyse your drone flights",
"main": "public/electron.js",
"build": {
"appId": "io.tilak.tiplot",
"extraResources": [
{
"from": "./backend/",
"to": "api",
"filter": [
"**/*"
]
},
{
"from": "./obj/",
"to": "obj",
"filter": [
"**/*"
]
}
],
"linux": {
"icon": "src/static/img/logo.png",
"category": "Utility"
},
"win": {
"icon": "src/static/img/logo.png"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"plotly.js": "^2.17.1",
"portfinder": "^1.0.32",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-bootstrap-submenu": "^3.0.1",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-icons": "^4.10.1",
"react-new-window": "^1.0.1",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"react-select": "^5.4.0",
"react-split-pane": "^0.1.92",
"react-toastify": "^9.1.2",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"three": "^0.148.0",
"uuid": "^9.0.0",
"web-vitals": "^3.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start:api": "cd api && python3 server.py",
"build:api": "node package_python.js",
"serve:electron": "concurrently -k \"yarn start:api \" \"cross-env BROWSER=none yarn start\" \"yarn start:electron\"",
"build:electron": "yarn build && electron-builder",
"start:electron": "wait-on tcp:3000 && electron .",
"clean": "rm -rf dist/ server.spec main.spec build/ backend"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"electron": "^22.0.1",
"electron-builder": "^23.3.3",
"three-orbit-controls": "^82.1.0",
"wait-on": "^7.0.1"
}
}