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
|
{
"name": "geshem",
"version": "4.1.0",
"description": "Geshem.space Rain Radar",
"main": "geshem.js",
"repository": "https://github.com/yuvadm/geshem.space",
"author": "Yuval Adam <_@yuv.al>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.18.0",
"luxon": "^1.7.1",
"mapbox-gl": "^0.51.0",
"rc-slider": "^8.6.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.1"
},
"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",
"deploycron": "serverless deploy -f update",
"invokecron": "serverless invoke -l -f update"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
|