-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "eew-website",
"license": "CC-BY-NC-SA-4.0",
"author": "Environmental Data and Governance Initiative <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/edgi-govdata-archiving/EEW-Website.git"
},
"version": "1.0.0",
"private": true,
"description": "EEW-Website",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && gatsby build",
"test": "ava **/*.test.js --verbose",
"deploy": "gatsby build && gh-pages -d public"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.0.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^4.0.0",
"gatsby-plugin-image": "^2.0.0",
"gatsby-plugin-manifest": "^4.0.0",
"gatsby-plugin-mdx": "^3.0.0",
"gatsby-plugin-react-helmet": "^5.0.0",
"gatsby-plugin-sass": "^5.0.0",
"gatsby-plugin-sharp": "^4.0.0",
"gatsby-plugin-sitemap": "^5.0.0",
"gatsby-source-filesystem": "^4.0.0",
"gatsby-transformer-sharp": "^4.0.0",
"lighthouse": "^4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^3.2.0",
"react-helmet": "^6.1.0",
"react-tabs": "^3.2.2",
"react-tooltip": "^4.2.21",
"sass": "^1.43.3"
}
}