forked from vortexntnu/rov-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "rov-gui",
"version": "0.1.0",
"description": "ROV-GUI for Vortex 2018",
"author": "Erik Dymbe",
"homepage": "./",
"repository": {
"type": "git",
"url": "https://github.com/vortexntnu/rov-gui"
},
"build": {
"appId": "your.id",
"linux": {
"category": "your.app.category.type"
}
},
"license": "MIT",
"main": "src/electron-starter.js",
"electron-dev": "ELECTRON_START_URL=http://localhost:3000 electron .",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-measure": "^2.0.2",
"react-scripts": "1.1.1",
"react-vis": "^1.9.2",
"roslib": "^0.20.0",
"semantic-ui-css": "^2.3.0",
"semantic-ui-react": "^0.78.3"
},
"devDependencies": {
"electron": "^1.8.2",
"electron-packager": "^11.0.1",
"foreman": "^2.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dist": "npm run build && electron-packager . rov-gui --out=dist/linux --platform=linux --arch=x64 --overwrite",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf start -p 3000",
"mock": "python2 src/utils/rov_mock.py"
}
}