forked from webiscool/postman-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.39 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "postman-learning-center",
"private": true,
"description": "Postman Learning Center documentation project",
"version": "0.1.0",
"dependencies": {
"@github-docs/frontmatter": "^1.2.0",
"algoliasearch": "^3.35.0",
"autocomplete.js": "^0.37.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.2.14",
"dotenv": "^8.1.0",
"eslint-plugin-jest": "^22.17.0",
"gatsby": "^2.19.45",
"gatsby-cli": "^2.8.23",
"gatsby-image": "^2.2.20",
"gatsby-plugin-algolia": "^0.3.4",
"gatsby-plugin-google-tagmanager": "^2.1.15",
"gatsby-plugin-manifest": "^2.2.18",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.0.8",
"gatsby-plugin-react-helmet": "^3.1.8",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2.1.15",
"gatsby-plugin-sharp": "^2.2.25",
"gatsby-plugin-sitemap": "^2.2.16",
"gatsby-plugin-sri": "^1.1.0",
"gatsby-plugin-typography": "^2.3.8",
"gatsby-remark-autolink-headers": "^2.1.11",
"gatsby-remark-embed-video": "^2.0.1",
"gatsby-remark-responsive-iframe": "^2.2.31",
"gatsby-source-filesystem": "^2.1.26",
"gatsby-transformer-remark": "^2.6.24",
"gatsby-transformer-sharp": "^2.2.16",
"glob": "^7.1.4",
"identity-obj-proxy": "^3.0.0",
"markdownlint-cli": "^0.19.0",
"node": "^12.11.1",
"node-sass": "^4.13.1",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-instantsearch-dom": "^5.7.0",
"react-onclickout": "^2.0.8",
"react-responsive-embed": "^2.1.0",
"react-router": "^5.1.0",
"react-tabs": "^3.0.0",
"react-test-renderer": "^16.9.0",
"react-typography": "^0.16.19",
"s3-deploy": "^1.4.0",
"sendmail": "^1.6.1",
"typography": "^0.16.19",
"uuid": "^3.3.3"
},
"devDependencies": {
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.2.14",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.9.0"
},
"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",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"test:update": "jest -u",
"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:url": "if grep -lri 's3.amazonaws.com/postman-static-getpostman-com' ./v6 ; then echo invalid s3 references found. Please use format; exit 1; else echo no s3 references found; fi",
"test:mdlint": "node_modules/.bin/markdownlint ./ --ignore node_modules --ignore legacy-documentation"
},
"repository": {
"type": "git",
"url": "https://github.com/postmanlabs/postman-docs"
},
"bugs": {
"url": "https://github.com/postmanlabs/postman-docs/issues"
}
}