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
|
{
"name": "geshem",
"version": "5.0.0",
"description": "Geshem.space Rain Radar",
"main": "geshem.js",
"homepage": "https://geshem.space",
"repository": "https://github.com/yuvadm/geshem.space",
"author": "Yuval Adam <_@yuv.al>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.19.0",
"luxon": "^1.19.3",
"mapbox-gl": "^1.4.1",
"rc-slider": "^8.7.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-mapbox-gl": "^4.6.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploystatic": "aws s3 sync --acl public-read build s3://geshem.space",
"serverless": "cd cron; serverless",
"deploycron": "cd cron; serverless deploy -f update",
"invokecron": "cd cron; serverless invoke -l -f update"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"serverless": "^1.59.3"
},
"proxy": "https://imgs.geshem.space/"
}
|