-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "website",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start --host 0.0.0.0",
"start:br": "npm run start -- --locale pt-BR",
"prebuild": "tsx create-schemas.ts",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"lint": "prettier --check . && eslint . --ext .ts,.tsx",
"lint:fix": "prettier --write . && eslint . --fix",
"test:unit": "poku --parallel test/unit",
"test": "npm run typecheck && npm run lint && npm run test:unit && npm run clear && npm run build",
"update": "pu minor && npm i && (npm audit fix || true)",
"postupdate": "npm run lint:fix"
},
"dependencies": {
"@docusaurus/core": "^3.7.0",
"@docusaurus/plugin-google-gtag": "^3.7.0",
"@docusaurus/plugin-google-tag-manager": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"docusaurus-plugin-sass": "^0.2.6",
"jsonc.min": "^1.1.0",
"lucide-react": "^0.471.0",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-confetti": "^6.2.2",
"react-dom": "^18.3.1",
"react-typed": "^2.0.12",
"sass": "^1.83.1",
"sonner": "^1.7.1"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.7.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/tsconfig": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"packages-update": "^2.0.0",
"poku": "^2.7.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}