-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "bounding-boxer",
"version": "1.0.0",
"description": "Draw bounding boxes on images and save them in a CSV",
"private": true,
"scripts": {
"start": "BROWSER=none BUILD_TYPE=dev nf start",
"start-prod": "BROWSER=none nf start",
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-eject": "react-scripts eject",
"electron": "electron .",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"build": "yarn react-build && yarn electron-build"
},
"main": "public/electron.js",
"dependencies": {
"@material-ui/core": "^3.0.3",
"@material-ui/icons": "^3.0.1",
"konva": "^2.3.0",
"nedb": "^1.8.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-konva": "^1.7.15",
"react-scripts": "1.1.5"
},
"devDependencies": {
"electron": "^2.0.8",
"electron-builder": "^20.28.4",
"electron-devtools-installer": "^2.2.4",
"foreman": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ben-Wu/Bounding-Boxer.git"
},
"author": "Ben Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ben-Wu/Bounding-Boxer/issues"
},
"homepage": "./",
"build": {
"appId": "ca.benwu.bounding_boxer",
"mac": {
"category": "public.app-category.developer-tools"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories":{
"buildResources": "assets"
}
}
}