-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.38 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ande",
"productName": "Ande",
"version": "0.2.0",
"main": "launch.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frenzylabs/ande.git"
},
"scripts": {
"parcel:start": "parcel src/index.html --no-cache ",
"parcel:build": "parcel build src/index.html --out-dir dist --no-cache --public-url ./ --target electron --bundle-node-modules",
"dev": "concurrently \"cross-env BROWSER=none yarn parcel:start\" \"wait-on http://localhost:1234 && DEBUG=serialport/* ELECTRON_DISABLE_SECURITY_WARNINGS=true electron . \"",
"clean": "rm -rf .cache && rm -rf dist",
"rebuild": "electron-rebuild -f -w serialport",
"build": "yarn clean && yarn rebuild && yarn parcel:build",
"pack": "electron-builder --dir",
"pack:win": "electron-builder --win",
"pack:macos": "electron-builder --mac",
"pack:linux": "electron-builder --linux",
"release": "yarn parcel:build && electron-builder --mac --win --publish never",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/electron": "^1.6.10",
"@types/electron-store": "^3.2.0",
"@types/electron-util": "^0.11.1",
"@types/fs-extra": "^8.1.0",
"@types/johnny-five": "^1.3.0",
"@types/node": "^13.9.3",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/react-scroll": "^1.5.5",
"@types/redux": "^3.6.0",
"@types/sass": "^1.16.0",
"@types/uuid": "^8.0.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"depcheck": "^0.9.2",
"electron": "^8.2.0",
"electron-builder": "^22.4.1",
"electron-is-dev": "^1.1.0",
"electron-packager": "^14.2.1",
"electron-rebuild": "^1.10.1",
"electron-reload": "^1.5.0",
"node-gyp": "^6.1.0",
"parcel": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"rimraf": "^3.0.2",
"sass": "^1.26.3",
"typescript": "^3.8.3",
"wait-on": "^4.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.1",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"antd": "^4.2.0",
"axios": "^0.20.0",
"dayjs": "^1.8.26",
"dnssd2": "^1.0.0",
"electron-store": "^5.1.1",
"electron-updater": "^4.3.1",
"electron-util": "^0.14.1",
"electron-window-state": "^5.0.3",
"fs-extra": "^9.0.0",
"monaco-editor": "^0.20.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"serialport": "^8.0.7",
"uuid": "^8.1.0"
},
"homepage": "./",
"author": {
"name": "FrenzyLabs",
"email": "[email protected]",
"url": "https://frenzylabs.com"
},
"build": {
"appId": "com.frenzylabs.Ande",
"productName": "Ande",
"copyright": "Copywrite © Frenzy Labs, LLC.",
"files": [
"./launch.js",
"dist/**/*",
"resources/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "resources"
},
"mac": {
"category": "public.app-category.development",
"target": "dmg"
},
"win": {
"target": "nsis"
}
}
}