forked from getsentry/sentry-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.11 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
{
"name": "sentry-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn sidecar\" \"next dev\"",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "tsc --skipLibCheck",
"lint:docs": "bin/lint-docs.ts",
"lint:eslint": "eslint \"{src,app}/**/*.{ts,tsx,js,jsx}\"",
"lint:eslint:fix": "eslint --fix \"{src,app}/**/*.{ts,tsx,js,jsx}\"",
"lint:prettier": "prettier --check \"./{src,app}/**/*.{md,mdx,ts,tsx,js,jsx}\"",
"lint:prettier:fix": "prettier --write \"./{src,app}/**/*.{md,mdx,ts,tsx,js,jsx}\"",
"lint:fix": "yarn run lint:prettier:fix && yarn run lint:eslint:fix",
"sidecar": "yarn spotlight-sidecar",
"test": "jest"
},
"dependencies": {
"@auth/prisma-adapter": "^1.2.0",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.0.0",
"@google-cloud/storage": "^7.7.0",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.1",
"@prisma/client": "^5.8.1",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toolbar": "^1.0.4",
"@radix-ui/themes": "^2.0.3",
"@sentry-internal/global-search": "^0.5.10",
"@sentry/nextjs": "^7.89.0",
"@types/mdx": "^2.0.9",
"bootstrap": "4.6.1",
"esbuild": "^0.19.8",
"framer-motion": "^10.12.16",
"gray-matter": "^4.0.3",
"hastscript": "^8.0.0",
"image-size": "^1.0.2",
"js-cookie": "^3.0.5",
"js-yaml": "^4.1.0",
"mdx-bundler": "^10.0.1",
"micromark": "^4.0.0",
"next": "14.0.2",
"next-auth": "^4.24.5",
"next-mdx-remote": "^4.4.1",
"nextjs-toploader": "^1.6.6",
"platformicons": "^5.9.2",
"prism-sentry": "^1.0.2",
"prismjs": "^1.27.0",
"query-string": "^6.13.1",
"react": "^18",
"react-bootstrap": "^1.6.7",
"react-dom": "^18",
"react-feather": "^2.0.8",
"react-popper": "^2.2.4",
"react-select": "^5.7.3",
"react-textarea-autosize": "^8.5.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-preset-minify": "^7.0.0",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-prism": "^1.3.6",
"sass": "^1.69.5",
"search-insights": "^2.2.3",
"server-only": "^0.0.1",
"textarea-markdown-editor": "^1.0.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@spotlightjs/spotlight": "^1.2.10",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-sentry-docs": "^1.118.0",
"jest": "^29.5.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prisma": "^5.8.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5"
},
"volta": {
"node": "20.11.0",
"yarn": "1.22.21"
}
}