-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
97 lines (97 loc) · 3.33 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
{
"name": "@joshghent/gifbar",
"version": "1.0.0",
"description": "A Mac Menu bar for getting your favourite gifs URL to send to your friends",
"main": "./dist/index.js",
"license": "MIT",
"private": false,
"author": "Josh Ghent <[email protected]> (https://joshghent.com)",
"scripts": {
"prestart": "yarn build",
"start": "electron .",
"watch:electron": "parcel watch index.js --target=electron",
"watch:react": "parcel watch main.js --target=node",
"watch": "concurrently \"yarn watch:electron\" \"yarn watch:react\" ",
"build": "parcel build index.js --target=electron && parcel build main.js --target=node",
"build-linux": "electron-packager . GifBar --platform=linux --arch x64 --out dist/ --executableName=GifBar && electron-installer-debian --config linuxBuildConfig.json",
"package": "electron-packager . GifBar --platform=darwin --icon=icon.icns --overwrite --out=GifBarApp",
"package-dmg": "electron-installer-dmg ./GifBarApp/GifBar-darwin-x64/GifBar.app GifBar --icon=icon.icns --overwrite --out=GifBarInstaller",
"test": "jest --env=jsdom --coverage --colors",
"test:watch": "jest --env=jsdom --colors --watchAll",
"bundlesize": "bundlesize"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setupTests.js",
"collectCoverageFrom": [
"components/**/*.{js,jsx}"
]
},
"keywords": [
"giphy",
"gif",
"bar",
"mac",
"osx",
"os",
"electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joshghent/giphy-bar.git"
},
"dependencies": {
"@jych/gif-provider": "^0.5.0",
"auto-launch": "^5.0.5",
"concurrently": "6.2.2",
"dotenv": "^8.2.0",
"giphy-api": "^2.0.1",
"lodash.isempty": "^4.4.0",
"lodash.map": "^4.6.0",
"menubar": "^9.0.0",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-copy-to-clipboard": "5.0.2",
"react-dom": "16.13.1",
"react-loading": "2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bundlesize": "^0.18.0",
"electron": "^22.3.25",
"electron-builder": "22.7.0",
"electron-installer-debian": "^3.0.0",
"electron-packager": "^14.0.6",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^23.6.0",
"node-pty": "^0.10.0-beta1",
"parcel-bundler": "^1.9.6",
"prettier": "^2.0.0",
"wait-on": "5.0.0"
},
"build": {
"appId": "com.joshghent.gifbar",
"mac": {
"category": "public.app-category.entertainment",
"target": "dmg",
"icon": "icon.icns",
"type": "development"
},
"directories": {
"buildResources": "assets"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"assets/*"
]
}
}