-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "enhanceannowebsite6",
"version": "1.0.0",
"description": "A web application for visualizing and exploring Euler paths in graphs. To be deployed on Github Pages.",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "http-server -p 8000"
},
"keywords": [
"euler",
"graph-theory",
"visualization",
"euler-path",
"chinese-postman",
"sigma.js"
],
"author": "anno",
"license": "ISC",
"type": "module",
"dependencies": {
"@sigma/export-image": "^3.0.0",
"cool-text-fit": "^1.0.3",
"graphology": "^0.26.0",
"graphology-layout": "^0.6.1",
"graphology-layout-force": "^0.2.4",
"graphology-layout-forceatlas2": "^0.10.1",
"sigma": "^3.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@vitest/coverage-v8": "^4.1.2",
"http-server": "^14.1.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"vite": "^7.1.2",
"vitest": "^4.0.15"
}
}