forked from getsentry/sentry-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 4.71 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"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": "BSL-1.1",
"bugs": {
"url": "https://github.com/getsentry/sentry-docs/issues"
},
"homepage": "https://docs.sentry.io/",
"dependencies": {
"@mdx-js/mdx": "^1.6.18",
"@mdx-js/react": "^1.6.18",
"@sentry-internal/global-search": "0.1.3",
"@sentry/gatsby": "^6.9.0",
"@sentry/tracing": "^6.9.0",
"@sentry/webpack-plugin": "^1.13.0",
"@types/dompurify": "^2.0.3",
"@types/node": "^12",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/react-select": "^3.0.19",
"add": "^2.0.6",
"algoliasearch": "^4.2.0",
"axios": "^0.21.1",
"babel-preset-gatsby": "^0.5.8",
"bootstrap": "4.3.1",
"copy-to-clipboard": "^3.3.1",
"dompurify": "^2.0.12",
"dotenv": "^8.2.0",
"framer-motion": "^3.3.0",
"gatsby": "2.32.13",
"gatsby-cli": "^2.19.0",
"gatsby-image": "^2.4.14",
"gatsby-plugin-algolia": "^0.11.2",
"gatsby-plugin-google-gtag": "^2.1.11",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-mdx": "^1.2.43",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.2.21",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.24",
"gatsby-plugin-typescript": "^2.4.18",
"gatsby-plugin-vercel": "^1.0.3",
"gatsby-plugin-zeit-now": "^0.3.0",
"gatsby-remark-autolink-headers": "^2.3.1",
"gatsby-remark-check-links": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.3.2",
"gatsby-remark-images": "^3.3.23",
"gatsby-remark-prismjs": "^3.5.1",
"gatsby-source-filesystem": "^2.3.1",
"gatsby-transformer-javascript-frontmatter": "^2.3.11",
"gatsby-transformer-json": "^2.4.11",
"gatsby-transformer-remark": "^2.8.7",
"gatsby-transformer-yaml": "^2.4.8",
"gray-matter": "^4.0.2",
"jsdom": "^16.3.0",
"node-sass": "^4.14.1",
"platformicons": "^4.3.0",
"prism-sentry": "^1.0.2",
"prismjs": "^1.24.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-helmet": "^5.2.1",
"react-instantsearch-dom": "^6.4.0",
"react-popper": "^2.2.4",
"react-select": "^3.1.0",
"remark-deflist": "^0.2.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"resolutions": {
"axios": ">=0.21.1",
"is-svg": ">=4.2.2",
"xmlhttprequest-ssl": ">=1.6.2",
"trim": ">=1.0.1",
"ssri": ">=8.0.1",
"glob-parent": ">=5.1.2",
"normalize-url": "^4.5.1",
"trim-newlines": "^4.0.2",
"postcss": "^7.0.36",
"gatsby-cli/**/ws": "^7.4.6",
"gatsby/eslint-plugin-graphql/**/ws": "^7.4.6",
"gatsby/socket.io/**/ws": "^7.4.6",
"jsdom/**/ws": "^7.4.6"
},
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build --log-pages",
"build:test": "GATSBY_ENV=test gatsby build",
"develop": "gatsby develop -p 3000",
"lint": "yarn run lint:ts && yarn run prettier:check && yarn run lint:docs",
"lint:ts": "tsc --skipLibCheck",
"lint:docs": "bin/lint-docs.ts",
"prettier:check": "prettier --check \"./{src,plugins}/**/*.{js,jsx}\"",
"prettier:check:all": "prettier --check \"./{src,plugins}/**/*.{md,mdx,js,jsx}\"",
"prettier:fix": "prettier --write \"./{src,plugins}/**/*.{js,jsx}\"",
"prettier:fix:all": "prettier --write \"./{src,plugins}/**/*.{md,mdx,js,jsx}\"",
"start": "yarn run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "jest"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/react-hooks": "^3.4.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.3.0",
"babel-preset-gatsby": "^0.5.8",
"eslint": "^7.8.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-react": "^7.20.6",
"est": "^0.2.1-alpha",
"gh-pages": "^2.2.0",
"http-server": "^0.12.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-dom": "^4.0.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-preset-gatsby": "^1.0.78",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.1",
"react-testing-library": "^8.0.1",
"ts-jest": "^26.3.0",
"tslint-react": "^5.0.0"
},
"volta": {
"node": "14.17.0",
"yarn": "1.22.5"
}
}