-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "uid-2-test-ts",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start --port 3006",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve --port 3006",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"format:source": "prettier --log-level warn --write \"src/**/*.{js,jsx,ts,tsx}\"",
"format:mdx": "prettier --log-level warn --write \"docs/**/*.{md,mdx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --parser-options=project:tsconfig.json --fix",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --parser-options=project:tsconfig.json"
},
"dependencies": {
"@docusaurus/core": "^3.5.2",
"@docusaurus/plugin-google-tag-manager": "^3.5.2",
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/theme-common": "^3.5.2",
"@mdx-js/react": "^3.0.1",
"@types/lodash": "^4.17.10",
"clsx": "^2.1.1",
"docusaurus-plugin-image-zoom": "^2.0.0",
"docusaurus-plugin-sass": "^0.2.5",
"lottie-react": "^2.4.0",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "1.75.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.5.2",
"@tsconfig/docusaurus": "^2.0.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-yml": "^1.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"overrides": {
"body-parser@1": "1.20.3",
"path-to-regexp@0": "0.1.10",
"path-to-regexp@1": "1.9.0",
"path-to-regexp@2": "8.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=20.12.2",
"npm": ">=8.3.0"
}
}