-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.94 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
{
"name": "gif-cake",
"version": "1.1.5",
"description": "The best gif desktop utility",
"main": "./app/app.js",
"repository": "https://github.com/asilluron/gif-cake",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [],
"author": {
"name": "Andrew Silluron",
"email": "[email protected]"
},
"dmg": {
"sign": false
},
"license": "MIT",
"build": {
"dmg": {
"sign": false
},
"afterSign": "scripts/notarize.js",
"extraResources": [
"./extraResources/**"
]
},
"productName": "GifCake",
"buildVersion": "1.1.3",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"electronWebpack": {
"whiteListedModules": [
"@material-ui/core",
"@material-ui/styles",
"axios-hooks"
]
},
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.6.0",
"@types/bindings": "^1.3.0",
"@types/lodash": "^4.14.144",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"axios": "^0.21.1",
"axios-hooks": "^1.6.0",
"electron-log": "^3.0.8",
"eslint": "^8.13.0",
"lodash": "^4.17.15",
"react": "^16.14.0",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.12.15",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^21.0.11",
"electron-notarize": "^0.2.0",
"electron-squirrel-startup": "^1.0.0",
"electron-webpack": "^2.7.4",
"eslint-plugin-react-hooks": "^2.2.0",
"node-loader": "^0.6.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"url-loader": "^2.2.0",
"webpack": "^4.41.2"
}
}