-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "coduels",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "tsc && eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"fsd:lint": "steiger ./src",
"prettier:fix": "prettier --write ./src",
"prepare": "husky"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@react-spring/web": "^10.0.3",
"@reduxjs/toolkit": "^2.11.0",
"async-mutex": "^0.5.0",
"clsx": "^2.1.1",
"katex": "^0.16.25",
"monaco-editor": "^0.53.0",
"msw": "^2.12.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.6",
"react-split": "^2.0.14",
"react-timer-hook": "^4.0.5",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"superstruct": "^2.0.2",
"use-debounce": "^10.0.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@feature-sliced/steiger-plugin": "^0.5.7",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitejs/plugin-react": "^5.1.1",
"baseline-browser-mapping": "^2.8.31",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-dom": "^2.3.7",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-react-x": "^2.3.7",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.6.2",
"sass": "^1.94.2",
"steiger": "^0.5.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.4",
"vite-plugin-svgr": "^4.5.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"src": "steiger"
},
"msw": {
"workerDirectory": "public"
}
}