forked from contrivancecompanychicago/covid-19-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "postman-covid-19-apis",
"private": true,
"description": "Postman Covid-19 APIs Example",
"version": "0.1.0",
"author": "Postman",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"gatsby": "^2.23.11",
"gatsby-image": "^2.2.44",
"gatsby-plugin-anchor-links": "^1.1.1",
"gatsby-plugin-gdpr-cookies": "^1.0.7",
"gatsby-plugin-google-analytics": "^2.2.2",
"gatsby-plugin-manifest": "^2.3.1",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.0.41",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sass": "^2.2.0",
"gatsby-plugin-sharp": "^2.5.1",
"gatsby-plugin-sitemap": "^2.3.1",
"gatsby-source-filesystem": "^2.2.1",
"gatsby-transformer-remark": "^2.7.0",
"gatsby-transformer-sharp": "^2.4.1",
"moment": "^2.24.0",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-cookie-consent": "^5.1.2",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"s3-deploy": "^1.4.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "GATSBY_ACTIVE_ENV=development gatsby build",
"build:dev": "npm run build",
"build:prod": "GATSBY_ACTIVE_ENV=production gatsby build",
"set-deploy": "gatsby build && rm -f release.zip && zip -r release.zip ./public",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test:lint": "node_modules/eslint/bin/eslint.js -c .eslintrc.js --ext .jsx --ext .js src/",
"test:lint-fix": "node_modules/eslint/bin/eslint.js -c .eslintrc.js --ext .jsx --ext .js src/ --fix",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}