-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "image-viewer",
"version": "0.1.0",
"private": true,
"homepage": "./",
"proxy": "http://localhost:3080",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"async": "^3.2.0",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"cors": "^2.8.5",
"d3": "^6.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"gm": "^1.23.1",
"imageinfo": "^1.0.4",
"ls": "^0.2.1",
"node-sass": "^4.14.1",
"nodemon": "^2.0.6",
"pg": "^8.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"sharp": "^0.26.2",
"web-vitals": "^0.2.4"
},
"main": "electron/main.js",
"productName": "Image viewer",
"scripts": {
"start": "set BROWSER=none && react-scripts start",
"start-browser": "react-scripts start",
"electron": "electron .",
"server": "nodemon ./api/server.js localhost 3080"
},
"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": "^9.1.1",
"electron-builder": "^22.7.0"
},
"build": {
"win": {
"icon": "build/icon.ico"
},
"mac": {
"icon": "build/icon.png"
},
"files": [
"build/**/*",
"node_modules/**/*"
]
}
}