-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.58 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
{
"name": "electron-dollarpe",
"productName": "dollarpe",
"version": "1.0.3",
"description": "An electron menubar app that shows dollar to peruvian sol exchange rate",
"main": "./app/main.js",
"scripts": {
"build": "concurrently \"yarn build:main\" \"yarn build:renderer\"",
"build:main": "webpack --config ./config/webpack.config.main.js",
"build:renderer": "webpack --config ./config/webpack.config.renderer.prod.js",
"start": "concurrently \"yarn start:renderer\" \"yarn start:main\"",
"start:main": "nodemon --exec \"yarn build:main && electron .\"",
"start:renderer": "webpack-dev-server --color --config ./config/webpack.config.renderer.dev.js",
"postinstall": "electron-builder install-app-deps package.json",
"lint": "eslint --fix .",
"dist": "electron-builder"
},
"build": {
"appId": "com.cristianbgp.dollarpe",
"productName": "dollarpe",
"directories": {
"output": "build"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "app/icon.png"
}
},
"repository": {
"type": "git",
"url": "[email protected]:cristianbgp/electron-dollarpe.git"
},
"keywords": [
"electron",
"dollarpe",
"app",
"menubar"
],
"author": {
"name": "Cristian Granda",
"email": "[email protected]",
"url": "https://cristianbgp.com"
},
"license": "MIT",
"dependencies": {
"electron-is": "^3.0.0",
"menubar": "^5.2.3",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"swr": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.8",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"electron": "^4.0.5",
"electron-builder": "^22.8.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.1.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.2",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"webpack-merge": "^4.2.1"
}
}