generated from webbertakken/simple-react-app
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
110 lines (110 loc) · 3.18 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
{
"name": "takken-io",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"docusaurus": "docusaurus",
"dev": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"test": "vitest",
"coverage": "vitest --coverage",
"lint": "eslint . --ext .js,.ts,.tsx,.mts --max-warnings 0",
"format": "prettier --write .",
"fix": "yarn format && yarn lint --fix",
"typecheck": "tsc",
"prepare": "husky install"
},
"lint-staged": {
"*.@(sh|bash|zsh|fish)": [
"shellcheck",
"git update-index --chmod=+x"
],
"*.@(ts|tsx|mts)": "bash -c 'tsc --skipLibCheck --noEmit'",
"*.@(ts|tsx|mts|js|jsx|mjs|cjs)": [
"eslint --max-warnings 0",
"vitest related --run"
],
"*.@(ts|tsx|mts|js|jsx|mjs|cjs|json|jsonc|json5|md|mdx|yaml|yml)": "prettier --write"
},
"dependencies": {
"@docusaurus/core": "^3.7.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/plugin-ideal-image": "^3.7.0",
"@docusaurus/plugin-pwa": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@docusaurus/theme-mermaid": "^3.7.0",
"@docusaurus/utils-validation": "^3.7.0",
"@garmin-fit/sdk": "^21.115.0",
"@giscus/react": "^2.4.0",
"@mdx-js/react": "^3.0.1",
"@types/dedent": "^0.7.2",
"@types/react-dom": "^18.2.22",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"docusaurus-gtm-plugin": "^0.0.2",
"docusaurus-plugin-content-gists": "^3.1.0",
"docusaurus-plugin-sass": "^0.2.5",
"fflate": "^0.8.2",
"js-cookie": "^3.0.5",
"prism-react-renderer": "^2.3.1",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-simple-code-editor": "^0.13.1",
"react-three-fiber": "^6.0.13",
"sass": "^1.71.1",
"three": "^0.162.0",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/tsconfig": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.64",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.3.25",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"shellcheck": "^2.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vitest": "^1.6.1",
"yarn-upgrade-all": "^0.7.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "22.13.1",
"yarn": "4.6.0"
},
"packageManager": "[email protected]"
}