forked from Prajwal-k-tech/EvoRoute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "evoroute",
"version": "1.0.0",
"description": "Interactive Network Routing Protocol Simulator - Educational tool demonstrating RIP and OSPF with explicit data structures",
"author": "Prajwal K",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Prajwal-k-tech/EvoRoute.git"
},
"homepage": "https://prajwal-k-tech.github.io/EvoRoute",
"keywords": [
"routing",
"networking",
"data-structures",
"graph",
"dijkstra",
"bellman-ford",
"education",
"visualization"
],
"private": false,
"scripts": {
"dev": "next dev --turbopack -p 9002",
"build": "NODE_ENV=production next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"next": "^15.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}