-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "appsody-website",
"private": true,
"description": "A Gatsby website for the Appsody project",
"version": "0.1.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"bootstrap": "^4.3.1",
"file-system": "^2.2.2",
"gatsby": "^2.9.6",
"gatsby-plugin-client-side-redirect": "0.0.2",
"gatsby-plugin-google-analytics": "^2.1.0",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-remark-autolink-headers": "^2.1.10",
"gatsby-remark-embed-youtube": "0.0.7",
"gatsby-remark-images": "^3.1.28",
"gatsby-source-filesystem": "^2.1.0",
"gatsby-transformer-remark": "^2.5.0",
"gatsby-transformer-yaml": "^2.2.4",
"jquery": "^3.4.1",
"js-search": "^1.4.3",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"simple-load-script": "^1.0.2",
"web-animations-js": "^2.3.2"
},
"devDependencies": {
"gatsby-plugin-remove-trailing-slashes": "^2.1.15",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby clean && gatsby build --prefix-paths && gh-pages -d public -o staging",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
}
}