-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.14 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
{
"name": "Klippylyzer",
"description": "Klippylyzer is a tool to analyze Klipper powered 3D printers",
"author": {
"name": "kageurufu",
"email": "[email protected]",
"url": "https://frank.af/"
},
"source": "src/index.html",
"scripts": {
"start": "vite",
"build": "vite build",
"lint:js": "eslint src",
"lint:ts": "tsc --noEmit",
"lint:css": "stylelint src/**/*.css src/**/*.scss",
"format": "prettier --write src"
},
"pre-commit": [
"lint:js",
"lint:ts",
"lint:css"
],
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@tanstack/react-virtual": "^3.0.0-beta.2",
"@use-gesture/react": "^10.2.16",
"@zip.js/zip.js": "^2.4.15",
"csstype": "^3.0.10",
"daisyui": "^2.15.2",
"echarts": "^5.3.2",
"echarts-for-react": "^3.0.2",
"echarts-gl": "^2.0.9",
"echarts-stat": "^1.2.0",
"flowbite": "^1.4.7",
"idb": "^7.0.1",
"immer": "^9.0.14",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet-async": "^1.3.0",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "6",
"react-syntax-highlighter": "^15.5.0",
"react-syntax-highlighter-virtualized-renderer": "^1.1.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.7",
"remove": "^0.1.5",
"ts-classnames": "^0.1.1",
"use-immer": "^0.7.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/prop-types": "^15.7.5",
"@types/react-dom": "^18.0.5",
"@types/react-syntax-highlighter": "^15.5.1",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"buffer": "^6.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mini-svg-data-uri": "^1.4.4",
"postcss": "^8.4.14",
"postcss-ts-classnames": "^0.3.0",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"stylelint": "^14.8.5",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-config-tailwindcss": "^0.0.3",
"tailwindcss": "^3.0.24",
"typescript": "^4.7.2",
"vite": "^2.9.12"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-tailwindcss",
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"rules": {
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
}
]
}
},
"prettier": {
"printWidth": 120
}
}