-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.69 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 4.69 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "dashboard",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite --host",
"build": "tsc -b && vite build",
"postbuild": "touch ./build/DONT-EDIT-FILES-IN-THIS-DIRECTORY",
"preview": "vite preview",
"style:all": "tsc && yarn run style:lint && yarn run style:prettier",
"style:lint": "tsc && eslint '**/src/**/*.{js,jsx,ts,tsx}' --fix",
"style:prettier": "prettier --check '**/*.{js,jsx,ts,tsx}'",
"make-pretty": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"test": "vitest run",
"test:watch": "vitest",
"eject": "react-scripts eject",
"svgo": "npx svgo -f src/@icons/customized-icons -o src/@icons/customized-icons & npx svgo -f src/@icons/sidebar-icons -o src/@icons/sidebar-icons & npx svgo -f src/@icons/special-icons -o src/@icons/special-icons"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css}": "prettier --write --ignore-unknown"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@hookform/resolvers": "^3.9.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-radio-group": "^1.4.7",
"@radix-ui/react-scroll-area": "^1.2.18",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-tooltip": "^1.2.16",
"@tailwindcss/forms": "^0.5.11",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-query-devtools": "^5.102.8",
"@tanstack/react-table": "^8.20.5",
"@testing-library/jest-dom": "^6.9.1",
"@types/chart.js": "^4.0.1",
"@types/js-cookie": "^3.0.6",
"@types/react-date-range": "^1.4.10",
"ajv": "^8.20.0",
"@uiw/react-md-editor": "^4.1.2",
"axios": "^1.20.0",
"chart.js": "^4.5.1",
"chartjs-adapter-luxon": "^1.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.23",
"driver.js": "^1.8.0",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.6",
"js-cookie": "^3.0.8",
"js-yaml": "^4.3.2",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.23",
"lucide-react": "^0.577.0",
"luxon": "^3.7.2",
"option-t": "^49.1.0",
"prettier": "^3.9.6",
"prism-react-renderer": "^2.4.1",
"query-string": "^9.5.0",
"re2js": "^2.8.6",
"react": "^19.2.8",
"react-chartjs-2": "^5.3.1",
"react-date-range": "^2.0.1",
"react-datepicker": "^7.6.0",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^19.2.8",
"react-easy-crop": "^5.5.7",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.86.0",
"react-i18next": "^15.0.1",
"react-icons-material-design": "^1.0.4",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"react-router": "^7.18.3",
"react-select": "^5.9.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^2.4.0",
"timeago.js": "^4.0.2",
"unist-util-visit": "^5.1.0",
"web-vitals": "^4.2.3",
"yup": "^1.7.1"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.25",
"@types/luxon": "^3.7.5",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/react-window": "^1.8.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.5.4",
"eslint": "^9.39.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.5.5",
"eslint-plugin-tailwindcss": "^3.18.3",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"postcss": "^8.5.26",
"prettier-plugin-tailwindcss": "^0.8.1",
"react-hot-toast": "^2.6.0",
"react-responsive": "^10.0.1",
"react-window": "^1.8.11",
"svgo": "^3.3.5",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.3",
"typescript-eslint": "^8.68.0",
"unplugin-fonts": "^1.1.1",
"uuid": "^14.0.2",
"vite": "^7.3.6",
"vite-plugin-compression2": "^2.5.3",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "3.2.7"
}
}