-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.2 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.2 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
{
"name": "deepwebide-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix && stylelint \"src/**/*.{css,scss}\" --fix && prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,md,yml,yaml}\"",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:css": "stylelint \"src/**/*.{css,scss}\" --fix",
"lint:format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,md,yml,yaml}\"",
"preview": "vite preview",
"prepare": "husky install",
"test": "echo \"No tests yet!\""
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@minoru/react-dnd-treeview": "^3.5.3",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-visually-hidden": "^1.2.3",
"@stomp/stompjs": "^7.1.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "^1.128.0",
"@tanstack/react-table": "^8.21.3",
"@types/sockjs-client": "^1.5.4",
"@types/ws": "^8.18.1",
"axios": "^1.10.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"pixelarticons": "^1.8.1",
"radix-ui": "^1.4.2",
"react": "^19.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-spinners": "^0.17.0",
"sass": "^1.89.2",
"socket.io-client": "^4.8.1",
"sockjs": "^0.3.24",
"sockjs-client": "^1.6.1",
"ws": "^8.18.3",
"y-monaco": "^0.1.6",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27",
"zod": "^4.0.5",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.0.14",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"stylelint": "^16.21.1",
"stylelint-config-standard": "^38.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.12.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-svgr": "^4.3.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,css}": [
"stylelint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}