-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
86 lines (86 loc) · 2.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "postman-covid-19-apis",
"private": true,
"description": "Postman Covid-19 APIs Example",
"version": "5.21.0",
"author": "Postman",
"dependencies": {
"aether-marketing": "1.28.2",
"axios": "1.6.7",
"base-64": "1.0.0",
"bootstrap": "4.5.0",
"dotenv": "8.2.0",
"gatsby": "4.25.8",
"gatsby-plugin-anchor-links": "1.2.1",
"gatsby-plugin-gdpr-cookies": "2.0.9",
"gatsby-plugin-google-analytics": "5.13.1",
"gatsby-plugin-manifest": "4.25.0",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-newrelic": "2.4.0",
"gatsby-plugin-react-helmet": "5.25.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sass": "5.25.0",
"gatsby-plugin-sharp": "4.25.1",
"gatsby-plugin-sitemap": "5.25.0",
"gatsby-source-filesystem": "4.25.0",
"gatsby-transformer-remark": "5.25.1",
"gatsby-transformer-sharp": "4.25.0",
"jquery": "3.5.1",
"jquery.scrollto": "2.1.3",
"moment": "2.30.1",
"node-fetch": "2.6.7",
"path-browserify": "1.0.1",
"popper.js": "1.16.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"sass": "1.77.5",
"shelljs": "0.8.5",
"styled-components": "5.3.10",
"terser": "5.27.0",
"uuid": "7.0.2"
},
"devDependencies": {
"crypto": "1.0.1",
"eslint": "8.14.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.29.4",
"follow-redirects": "1.15.6",
"prettier": "2.6.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"bff": "rm -rf bff-data && npm run bff:data && node bff.js",
"bff:data": "node -p \"require('./build/bffData.js')()\"",
"build": "npm run bff && gatsby build",
"change": "git checkout develop; npx change-cli",
"set-deploy": "gatsby build && rm -f release.zip && zip -r release.zip ./public",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"reset": "rm -rf node_modules; npm install; ./node_modules/.bin/gatsby clean",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"nvmrc": "echo $(node -p -e 'require(\"./package\").engines.node.split(\">=\").join(\"\")') > .nvmrc",
"postinstall": "npm run bff",
"test:bff": "npm run bff && cat bff-data/footer.json",
"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"
},
"engines": {
"node": "14.17.1"
}
}