forked from newrelic/opensource-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 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
{
"name": "opensource-website",
"private": true,
"description": "Data, code, and automation for opensource.newrelic.com",
"version": "1.5.0",
"author": "Open Source Team at New Relic <[email protected]>",
"dependencies": {
"date-fns": "^2.14.0",
"feather-icons": "^4.28.0",
"gatsby": "^2.22.11",
"gatsby-image": "^2.4.5",
"gatsby-plugin-gdpr-tracking": "https://github.com/tangollama/gatsby-plugin-gdpr-tracking.git",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.12",
"gatsby-plugin-newrelic": "https://github.com/newrelic/gatsby-plugin-newrelic.git#5cd42e832f0588764dc332ce7ebd05794de5106a",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sass": "^2.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-use-dark-mode": "^1.1.2",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-images": "^3.3.8",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-json": "^2.4.3",
"gatsby-transformer-sharp": "^2.5.3",
"js-cookie": "^2.2.1",
"js-search": "^2.0.0",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-feather": "^2.0.8",
"react-helmet": "^6.0.0",
"react-images": "^1.1.7",
"react-live": "^2.2.2",
"react-modal-image": "^2.5.0",
"unist-util-visit": "^2.0.2",
"use-dark-mode": "^2.3.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@newrelic/eslint-plugin-newrelic": "^0.3.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.7",
"eslint": "^7.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.1"
},
"keywords": [
"gatsby",
"open source",
"new relic"
],
"license": "Apache-2",
"scripts": {
"build": "gatsby build",
"build:production": "GATSBY_NEWRELIC_ENV=production npm run build",
"build:staging": "GATSBY_NEWRELIC_ENV=staging gatsby build",
"develop": "npm run clean && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "GATSBY_NEWRELIC_ENV=development npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:update": "npm test -- --update-snapshot",
"eslint-check": "eslint src/ gatsby/",
"eslint-fix": "eslint src/ gatsby/ --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/opensource-website"
},
"bugs": {
"url": "https://github.com/newrelic/opensource-website/issues"
}
}