-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.11 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.11 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
{
"name": "O-MINDS",
"version": "0.1.5",
"description": "OMINDS is a native application that helps you create robust image sets for your experiments.",
"private": true,
"main": "public/electron.js",
"author": "The Duncan Lab",
"homepage": "./",
"build": {
"appId": "com.objectproject.app",
"icon": "build/icon.png",
"mac": {
"category": "your.app.category.type",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage"
}
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"browserify-fs": "^1.0.0",
"concurrently": "^6.2.1",
"csv": "^5.5.3",
"custom-electron-titlebar": "^3.2.7",
"dataframe-js": "^1.4.4",
"electron-is-dev": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"fontsource-roboto": "^4.0.0",
"frameless-titlebar": "^2.1.4",
"lodash": "^4.17.21",
"material-icons": "^0.3.1",
"objects-to-csv": "^1.3.6",
"python-shell": "^2.0.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "3.4.1",
"wait-on": "^5.3.0"
},
"scripts": {
"electron-start": "electron .",
"electron-pack": "build --em.main=build/electron.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -m",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^11.0.1",
"electron-builder": "^22.14.5",
"ws": "3.3.2"
}
}