-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.27 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
{
"name": "index-painter-electron",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"array-move": "^3.0.0",
"cross-env": "^7.0.3",
"electron-is-dev": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.2",
"web-vitals": "^1.0.1",
"cubic-hermite": "^1.0.0",
"immer": "^8.0.0",
"is-electron": "^2.2.0",
"mobx": "^6.1.4",
"mobx-react": "^7.1.0",
"raw.macro": "^0.3.0",
"react-beautiful-dnd": "^13.0.0",
"react-panelgroup": "^1.0.12",
"three": "^0.116.1"
},
"scripts": {
"start": "concurrently -k \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electronmon .\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dist:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"dist:mac": "yarn build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"dist:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js",
"react-start": "react-scripts start"
},
"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": "^5.3.0",
"electron": "^11.2.1",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.1.1",
"electronmon": "^1.1.2",
"wait-on": "^5.2.1"
},
"homepage": "./",
"main": "./public/electron.js",
"build": {
"appId": "com.electron.my_app",
"productName": "My App",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg",
"category": "utilities",
"type": "development"
},
"win": {
"target": "nsis",
"icon": "./public/logo512.png"
},
"linux": {
"target": "deb",
"category": "Development"
}
}
}