This repository was archived by the owner on Oct 1, 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
137 lines (137 loc) · 4.22 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 4.22 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "weatherbear",
"description": "A gorgeous weather app for your Mac, Linux, and Windows",
"version": "1.1.0",
"author": "Alan Tai",
"repository": {
"type": "git",
"url": "git+https://github.com/ayltai/weatherbear.git"
},
"bugs": {
"url": "https://github.com/ayltai/weatherbear/issues"
},
"license": "MIT",
"keywords": [
"weather",
"forecast"
],
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"check": "npm run check:css && npm run check:js",
"check:css": "stylelint src/*.css public/**/*.css !build/** !src/css/*.min.css",
"check:js": "eslint src/**/*.jsx src/**/*.js public/**/*.js",
"codecov": "codecov",
"electron": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron .\"",
"preinstall": "npx npm-force-resolutions",
"postinstall": "electron-builder install-app-deps",
"start": "cross-env BROWSER=none react-scripts start",
"build": "react-scripts build",
"package:mac": "electron-builder build --mac --publish never",
"package:nix": "electron-builder build --linux --publish never",
"package:win": "electron-builder build --win --publish never",
"test": "react-scripts test --watchAll=false --ci --no-watchman --coverage --coverageDirectory=coverage",
"eject": "react-scripts eject"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.6",
"codecov": "^3.7.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron": "^9.3.1",
"electron-builder": "^22.8.1",
"electron-devtools-installer": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.21.2",
"nock": "^13.0.4",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"wait-on": "^5.2.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"chart.js": "^2.9.3",
"dotenv": "^8.2.0",
"i18next": "^19.7.0",
"electron-is-dev": "^1.2.0",
"lodash.throttle": "^4.1.1",
"menubar": "^9.0.1",
"moment": "^2.29.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-i18next": "^11.7.3",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"request": "^2.88.2",
"unsplash-js": "^6.3.0"
},
"resolutions": {
"minimist": "1.2.5",
"yargs-parser": "18.1.3"
},
"build": {
"appId": "com.github.ayltai.weatherbear",
"productName": "WeatherBear",
"extends": "react-cra",
"files": [
"build/**/*",
"node_modules/**/*"
],
"linux": {
"category": "Utility"
},
"mac": {
"icon": "design/mac.icns",
"category": "public.app-category.weather",
"darkModeSupport": true
},
"win": {
"icon": "design/win.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"deleteAppDataOnUninstall": true
},
"appImage": {
"license": "LICENSE"
},
"publish": {
"provider": "github",
"repo": "wetherbear",
"owner": "ayltai"
}
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"moduleNameMapper": {
"electron": "<rootDir>/src/components/mocks/electron.js"
}
},
"engines": {
"node": ">=14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}