-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.35 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
{
"name": "portfolio-builder",
"version": "0.1.0",
"private": true,
"dependencies": {
"gatsby": "^2.23.20",
"gatsby-plugin-canonical-urls": "^2.3.9",
"gatsby-plugin-s3": "^0.3.3",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-sass": "^2.3.10",
"gulp": "^4.0.2",
"gulp-awspublish": "^4.0.1",
"gulp-cloudfront-invalidate-aws-publish": "^1.0.0",
"gulp-rename": "^2.0.0",
"lodash.throttle": "^4.1.1",
"merge2": "^1.3.0",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"react-scrollspy": "^3.4.0"
},
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby-plugin-s3 deploy --yes && aws cloudfront create-invalidation --distribution-id E1WVACBK45GZ13 --paths \"/*\""
},
"scriptsComments": {
"deploy": "install aws cli and configure it with access key id and secret access key before running the command"
},
"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": {}
}