-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "verizon.github.io",
"version": "0.1.0",
"private": true,
"description": "A website developed for Verizon by the Open Source Program Office within",
"homepage": "https://verizon.github.io",
"author": "Gary White Jr. <gary.white@verizon.com>",
"dependencies": {
"@babel/core": "7.19.3",
"bootstrap": "5.2.3",
"gatsby": "^5.0.0",
"gatsby-plugin-gatsby-cloud": "^5.0.0",
"gatsby-plugin-image": "3.9.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-react-helmet": "^6.0.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sass": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-plugin-sitemap": "^6.0.0",
"gatsby-remark-autolink-headers": "^6.0.0",
"gatsby-remark-copy-linked-files": "^6.0.0",
"gatsby-remark-embed-gist": "1.2.1",
"gatsby-remark-images": "7.0.0",
"gatsby-remark-prismjs": "7.9.0",
"gatsby-remark-responsive-iframe": "^6.0.0",
"gatsby-remark-smartypants": "^6.0.0",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-remark": "^6.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"prismjs": "1.29.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-bootstrap": "2.5.0",
"react-cookie": "4.1.1",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-icons": "4.4.0",
"sass": "1.55.0",
"uuid": "9.0.0",
"webpack": "5.82.0"
},
"devDependencies": {
"gatsby-cli": "^5.0.0",
"gh-pages": "4.0.0",
"prettier": "2.7.1"
},
"scripts": {
"build": "gatsby build",
"build-prefix": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b gh-pages",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}