This repository was archived by the owner on Jun 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "FruityUI",
"description": "An UI for 'fruityrazer'.",
"author": "Eduardo Almeida",
"license": "GPL-3.0",
"version": "0.1.1",
"private": true,
"dependencies": {
"app-root-dir": "^1.0.2",
"axios": "^0.18.0",
"electron-is-dev": "^0.3.0",
"electron-store": "^2.0.0",
"react": "^16.4.1",
"react-ace": "^6.1.4",
"react-color": "^2.14.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"react-toastify": "^4.1.0",
"redux": "^4.0.0"
},
"scripts": {
"start": "nf start -p 3000",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "build -c.extraMetadata.main=build/electron.js",
"electron-start": "node src/electron-wait-react",
"react-start": "react-scripts start",
"pack": "build --dir",
"preelectron-pack": "yarn build",
"dist": "npm run build && build",
"postinstall": "install-app-deps"
},
"devDependencies": {
"electron": "^2.0.4",
"electron-builder": "^20.19.2"
},
"homepage": "./",
"main": "public/electron.js",
"build": {
"appId": "io.edr.fruityrazer.fruityui",
"directories": {
"buildResources": "assets"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"extraFiles": [
{
"from": "resources/${os}",
"to": "Resources/bin",
"filter": [
"**/*"
]
}
],
"mac": {
"category": "public.app-category.utilities"
}
}
}