forked from getsentry/sentry-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.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
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
{
"name": "sentry-docs",
"description": "Learn how to use Sentry, configure Sentry clients, and contribute to the open source project on GitHub",
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/sentry-docs.git"
},
"author": "getsentry",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/getsentry/sentry-docs/issues"
},
"homepage": "https://docs.sentry.io/",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.0.0",
"@mdx-js/mdx": "^1.6.18",
"@mdx-js/react": "^1.6.18",
"@sentry-internal/global-search": "^0.5.7",
"@sentry/browser": "7.55.2",
"@sentry/webpack-plugin": "2.2.2",
"@types/dompurify": "^3.0.2",
"@types/node": "^20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"bootstrap": "4.6.1",
"crypto-browserify": "^3.12.0",
"dompurify": "^3.0.3",
"dotenv": "^16.1.4",
"framer-motion": "^10.12.16",
"gatsby": "^4.25.7",
"gatsby-cli": "^4.0.0",
"gatsby-plugin-algolia": "^0.11.2",
"gatsby-plugin-mdx": "^3.0.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sass": "^6.10.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^6.10.0",
"gatsby-plugin-zeit-now": "^0.3.0",
"gatsby-remark-autolink-headers": "^6.10.0",
"gatsby-remark-check-links": "^2.1.0",
"gatsby-remark-copy-linked-files": "^5.0.0",
"gatsby-remark-images": "^7.10.0",
"gatsby-remark-prismjs": "^7.10.0",
"gatsby-source-filesystem": "^4.0.0",
"gatsby-transformer-javascript-frontmatter": "^4.0.0",
"gatsby-transformer-json": "^4.0.0",
"gatsby-transformer-remark": "^5.0.0",
"gray-matter": "^4.0.2",
"jsdom": "^22.1.0",
"platformicons": "^5.6.0",
"prism-sentry": "^1.0.2",
"prismjs": "^1.27.0",
"query-string": "^6.13.1",
"react": "^18.2.0",
"react-bootstrap": "^1.6.7",
"react-dom": "^18.2.0",
"react-feather": "^2.0.8",
"react-helmet": "^5.2.1",
"react-popper": "^2.2.4",
"react-select": "^5.7.3",
"remark-deflist": "^0.2.1",
"sass": "^1.62.1",
"search-insights": "^2.2.3",
"stream-browserify": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"trim": ">=1.0.1"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@untitaker/hyperlink": "^0.1.28",
"babel-jest": "^29.5.0",
"eslint": "^8.42.0",
"eslint-config-sentry-docs": "^1.118.0",
"jest": "^29.5.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0"
},
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build",
"build:test": "GATSBY_ENV=test gatsby build",
"develop": "gatsby develop -p 3000",
"lint": "yarn run lint:prettier && yarn run lint:eslint && yarn run lint:ts && yarn run lint:docs",
"lint:ts": "tsc --skipLibCheck",
"lint:docs": "bin/lint-docs.ts",
"lint:links": "yarn run hyperlink public/",
"lint:eslint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"lint:eslint:fix": "eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"lint:prettier": "prettier --check \"./src/**/*.{md,mdx,ts,tsx,js,jsx}\"",
"lint:prettier:fix": "prettier --write \"./src/**/*.{md,mdx,ts,tsx,js,jsx}\"",
"start": "yarn run develop",
"format": "prettier --write \"src/**/*.js\"",
"remove-preview-deployments": "ts-node scripts/remove-preview-deployments.ts",
"test": "jest"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.5"
}
}