-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.4 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
{
"name": "fix-inventory-docs",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/someengineering/inventory.fix.security.git"
},
"license": "Apache-2.0",
"scripts": {
"docusaurus": "docusaurus",
"build": "docusaurus build",
"build:fast": "BUILD_FAST=true docusaurus build",
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"format": "prettier --write --cache .",
"format:check": "prettier --check --cache .",
"gen-api-docs": "docusaurus clean-api-docs all && docusaurus gen-api-docs all && prettier --write .",
"lint": "eslint \"./**/*.{ts,tsx}\"",
"optimize": "svgo -rf .",
"serve": "docusaurus serve",
"start": "docusaurus start",
"swizzle": "docusaurus swizzle",
"write-heading-ids": "docusaurus write-heading-ids",
"write-translations": "docusaurus write-translations"
},
"dependencies": {
"@1password/docusaurus-plugin-stored-data": "1.0.0",
"@docusaurus/core": "3.4.0",
"@docusaurus/plugin-pwa": "3.4.0",
"@docusaurus/plugin-sitemap": "3.4.0",
"@docusaurus/preset-classic": "3.4.0",
"@docusaurus/theme-mermaid": "3.4.0",
"@fec/remark-a11y-emoji": "4.0.2",
"@fontsource-variable/plus-jakarta-sans": "5.0.21",
"@mdx-js/react": "3.0.1",
"@octokit/core": "6.1.2",
"a11y-react-emoji": "1.2.0",
"clsx": "2.1.1",
"docusaurus-plugin-openapi-docs": "3.0.1",
"docusaurus-theme-openapi-docs": "3.0.1",
"github-slugger": "2.0.0",
"js-cookie": "3.0.5",
"lodash": "4.17.21",
"netlify-plugin-cache": "1.0.3",
"posthog-js": "1.194.3",
"prism-react-renderer": "2.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-modal": "3.16.1",
"react-zoom-pan-pinch": "3.6.1",
"rehype-katex": "7.0.0",
"remark-kroki-plugin": "0.1.1",
"remark-math": "6.0.0",
"yup": "1.4.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@docusaurus/module-type-aliases": "3.4.0",
"@docusaurus/tsconfig": "3.4.0",
"@docusaurus/types": "3.4.0",
"@types/js-cookie": "3.0.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "4.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-formatjs": "4.13.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-regexp": "2.6.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"postcss": "8.4.40",
"prettier": "3.4.2",
"prettier-plugin-css-order": "2.1.2",
"svgo": "3.3.2",
"typescript": "5.5.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.{css,json,md,mdx,yml}": [
"prettier --write"
],
"**/*.svg": [
"svgo"
]
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}