forked from newrelic/developer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.47 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
{
"name": "developer-website",
"private": true,
"version": "1.35.4",
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.19",
"@mdx-js/react": "^1.6.19",
"@newrelic/gatsby-theme-newrelic": "^1.25.0",
"@splitsoftware/splitio-react": "^1.2.0",
"@xstate/react": "^1.0.2",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"diff": "^4.0.2",
"gatsby": "^2.30.2",
"gatsby-image": "^2.4.20",
"gatsby-plugin-emotion": "^4.3.14",
"gatsby-plugin-manifest": "^2.4.35",
"gatsby-plugin-mdx": "^1.4.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.2.32",
"gatsby-plugin-react-helmet": "^3.3.12",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sass": "^2.3.22",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-sitemap": "^2.4.17",
"gatsby-plugin-use-dark-mode": "^1.2.0",
"gatsby-remark-autolink-headers": "^2.9.0",
"gatsby-remark-images": "^3.5.1",
"gatsby-source-filesystem": "^2.3.35",
"gatsby-transformer-remark": "^2.8.47",
"gatsby-transformer-sharp": "^2.5.20",
"js-cookie": "^2.2.1",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.21.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-live": "^2.2.2",
"react-markdown": "^5.0.3",
"react-middle-ellipsis": "^1.1.0",
"react-shadow": "^18.6.1",
"react-simple-code-editor": "^0.11.0",
"react-typist": "^2.0.5",
"react-use": "^15.3.4",
"snyk": "^1.437.4",
"use-dark-mode": "^2.3.1",
"use-media": "^1.4.0",
"warning": "^4.0.3",
"xstate": "^4.14.0"
},
"devDependencies": {
"@newrelic/eslint-plugin-newrelic": "^0.3.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^10.0.4",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.11.0",
"core-js": "^2.4.0",
"eslint": "^7.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-gdpr-tracking": "^1.2.2",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-emotion": "^10.0.32",
"patch-package": "^6.2.2",
"prettier": "2.2.1",
"react-test-renderer": "^16.13.1"
},
"resolutions": {
"bl": "^4.0.3",
"node-fetch": "^2.6.1",
"ini": "^1.3.6"
},
"keywords": [
"gatsby"
],
"license": "Apache-2",
"scripts": {
"build": "gatsby build",
"build:production": "GATSBY_NEWRELIC_ENV=production gatsby build",
"build:staging": "GATSBY_NEWRELIC_ENV=staging gatsby build",
"build:related-content": "BUILD_RELATED_CONTENT=true yarn run build:production",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint src/",
"lint:fix": "yarn run lint -- --fix",
"test": "jest",
"test:watch": "yarn test -- --watch",
"snyk-protect": "snyk protect",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-push": "yarn run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/developer-website"
},
"bugs": {
"url": "https://github.com/newrelic/developer-website/issues"
},
"snyk": true
}