-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.26 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.26 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
{
"name": "ecode",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint --ext .tsx,.ts,.js,.jsx src/",
"preview": "vite preview --host",
"prepare": "husky install",
"completed": "echo '\\033[4;32m♡ 'Completed checking ♡' \\033[0m'",
"generate-router": "tsr generate",
"generate-schema": "pnpm dlx openapi-typescript http://localhost:8080/v3/api-docs --output ./src/generated/schema.d.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/autocomplete": "^6.15.0",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.1",
"@codesandbox/sandpack-react": "^2.13.5",
"@codesandbox/sandpack-themes": "^2.0.21",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/x-date-pickers": "^6.19.4",
"@tanstack/react-query": "^5.22.2",
"@tanstack/react-router": "^1.16.6",
"@tanstack/router-vite-plugin": "^1.16.5",
"@tiptap/core": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.0",
"@types/uuid": "^9.0.8",
"@uiw/react-codemirror": "^4.21.22",
"@uiw/react-split": "^5.9.3",
"axios": "^1.6.7",
"chart.js": "^4.4.2",
"classnames": "^2.5.1",
"codemirror": "^6.0.1",
"date-fns": "^3.3.1",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"material-react-table": "^2.11.3",
"material-ui-popup-state": "^5.0.10",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-resizable-panels": "^1.0.5",
"sandpack-file-explorer": "^0.0.7",
"tailwind-merge": "^2.2.1",
"uuid": "^9.0.1",
"vitest": "^1.3.1",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-tailwindcss": "^3.14.2",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"openapi-typescript": "^6.7.4",
"postcss": "^8.4.35",
"prettier": "3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix --ext .tsx,.ts,.js,.jsx"
]
}
}