-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 803 Bytes
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
{
"name": "leetcode-76-minimum-window-substring",
"version": "1.0.0",
"description": "LeetCode 76 - 最小覆盖子串 算法可视化",
"scripts": {
"dev": "vite",
"dev:background": "nohup vite --host 127.0.0.1 --port 48844 > logs/server.log 2>&1 &",
"build": "vite build",
"preview": "vite preview",
"stop": "lsof -ti:48844 | xargs kill -9 2>/dev/null || true"
},
"dependencies": {
"@types/d3": "^7.4.3",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"d3": "^7.9.0",
"idb": "^8.0.3",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"pm2": "^6.0.14",
"vite": "^5.0.0"
}
}