-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 947 Bytes
/
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
{
"name": "trail-monitor-ui",
"version": "1.0.0",
"private": true,
"dependencies": {
"env-cmd": "^7.0.0",
"mapbox-gl": "^0.44.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-mapbox-gl": "^3.8.0",
"react-scripts": "1.1.0",
"react-spinners": "^0.2.6",
"react-toggle-button": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"start-prod": "env-cmd .env.production react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"s3-upload": "aws s3 sync build/ s3://trailmonitorclient",
"deploy": "npm run build && npm run s3-upload && npm run refresh-site",
"refresh-site": "aws cloudfront create-invalidation --distribution E38BIIZ81706OJ --paths '/*'",
"deploy-beta": "npm run build && npm run s3-upload-beta",
"s3-upload-beta": "aws s3 sync build/ s3://trailmonitorclientbeta"
}
}