-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.48 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
{
"name": "fordfulkerson",
"version": "1.0.0",
"description": "This project, developed as part of my Master's degree program, offers an interactive and engaging way to understand the Ford-Fulkerson algorithm. This algorithm is a key concept in computer science, specifically in the field of network flow theory, where it is used to compute the maximum flow in a flow network. The primary goal of this project is to make learning the algorithm more accessible and enjoyable through visualization.",
"main": "index.js",
"scripts": {
"watch": "webpack --mode development --watch",
"serve": "webpack-dev-server --mode development --open",
"start": "node server.js",
"open": "npm run start && open http://localhost:3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"d3": "^7.9.0",
"d3-graphviz": "^5.6.0",
"express": "^4.21.1",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@hpcc-js/wasm": "^2.20.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"d3-dispatch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-path": "^3.1.0",
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"style-loader": "^4.0.0",
"vue-loader": "^17.4.2",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}