forked from newrelic/docs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.77 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "docs-website",
"private": true,
"description": "New Relic Documentation",
"version": "0.1.0",
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@github-docs/frontmatter": "^1.3.1",
"@mdx-js/mdx": "^2.0.0-next.8",
"@mdx-js/react": "^2.0.0-next.8",
"@newrelic/gatsby-theme-newrelic": "^1.17.1",
"@splitsoftware/splitio-react": "^1.2.0",
"babel-jest": "^26.3.0",
"date-fns": "^2.16.1",
"front-matter": "^4.0.2",
"gatsby": "^2.28.2",
"gatsby-image": "^2.7.0",
"gatsby-plugin-json-output": "^1.2.0",
"gatsby-plugin-layout": "^1.6.0",
"gatsby-plugin-manifest": "^2.8.0",
"gatsby-plugin-mdx": "^1.6.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.6.0",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.10.1",
"gatsby-remark-autolink-headers": "^2.7.0",
"gatsby-remark-copy-linked-files": "^2.6.0",
"gatsby-remark-images": "^3.7.1",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-transformer-remark": "^2.12.0",
"gatsby-transformer-sharp": "^2.8.0",
"gatsby-transformer-yaml": "^2.7.0",
"github-slugger": "^1.3.0",
"jest": "^26.4.0",
"jest-emotion": "^10.0.32",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-spring": "npm:@react-spring/[email protected]",
"react-use": "^15.3.4",
"react-use-measure": "^2.0.2",
"turndown": "^6.0.0"
},
"devDependencies": {
"@newrelic/eslint-plugin-newrelic": "^0.3.1",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react-hooks": "^4.1.0",
"hastscript": "^6.0.0",
"he": "^1.2.0",
"htmltojsx": "^0.3.0",
"image-downloader": "^4.0.1",
"js-yaml": "^3.14.0",
"mdast-builder": "^1.1.1",
"mdast-util-heading-range": "^2.1.4",
"mdast-util-to-string": "^1.1.0",
"node-fetch": "^2.6.1",
"node-html-parser": "^2.0.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.0.5",
"rehype-stringify": "^8.0.0",
"remark-frontmatter": "^2.0.0",
"remark-mdx": "^2.0.0-next.8",
"remark-mdxjs": "^2.0.0-next.8",
"remark-parse": "8.0.3",
"remark-stringify": "^8.1.1",
"to-vfile": "^6.1.0",
"unified": "^9.2.0",
"unist-builder": "^2.0.3",
"unist-util-is": "^4.0.2",
"unist-util-select": "^3.0.1",
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.0",
"vfile": "^4.2.0",
"vfile-glob": "^1.0.0",
"vfile-reporter": "^6.0.1",
"yaml-loader": "^0.6.0"
},
"resolutions": {
"bl": "^4.0.3",
"object-path": "^0.11.5",
"node-forge": "^0.10.0",
"node-fetch": "^2.6.1",
"ini": "^1.3.6",
"yargs-parser": "^18.1.1"
},
"keywords": [
"gatsby"
],
"license": "Apache-2",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"build:production": "GATSBY_NEWRELIC_ENV=production gatsby build",
"build:staging": "GATSBY_NEWRELIC_ENV=staging gatsby build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "yarn lint --fix",
"migrate": "node --max-old-space-size=4096 scripts/migrate.js",
"codemod": "node scripts/codemod.js",
"postinstall": "patch-package",
"copy-edits": "node scripts/copy-edits.js"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/docs-website"
},
"bugs": {
"url": "https://github.com/newrelic/docs-website/issues"
}
}