-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
83 lines (83 loc) · 2.65 KB
/
package.json
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
{
"name": "mininet-editor",
"version": "0.0.0-no-version",
"private": true,
"scripts": {
"build": "vite build",
"build:old-deploy-files": "./bin/build-old-deploy-files.sh",
"clean": "rm -rf dist/*",
"deploy": "./gh-pages.sh",
"dev": "vite",
"lint:ci": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue --fix .",
"postinstall": "patch-package",
"test": "npm run test:deps && npm run test:unit && npm run test:e2e",
"test:deps": "depcruise --config .dependency-cruiser.js src",
"test:e2e": "start-server-and-test dev http://127.0.0.1:3000/me/index.html test:e2e:cypress:run",
"test:e2e:cypress:open": "cypress open",
"test:e2e:cypress:run": "cypress run",
"test:e2e:open": "start-server-and-test dev http://127.0.0.1:3000/me/index.html test:e2e:cypress:open",
"test:unit": "cypress run --component",
"test:unit:open": "cypress open --component",
"visualize-deps": "depcruise src --include-only \"^src\" --config --output-type dot | dot -T svg > dependency-graph.svg"
},
"dependencies": {
"@mdi/font": "7.4.47",
"antlr4": "4.9.3",
"jspdf": "2.5.2",
"jspdf-autotable": "3.8.3",
"source-code-pro": "2.38.0",
"source-sans-pro": "3.6.0",
"uuid": "9.0.1",
"vis-data": "7.1.9",
"vis-network": "9.1.9",
"vue": "2.7.16",
"vue-router": "3.6.5",
"vuetify": "2.7.2",
"vuetify-confirm": "2.0.6",
"vuex": "3.6.2",
"vuex-ltm": "1.1.7",
"vuex-shared-mutations": "1.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.7",
"@types/uuid": "9.0.8",
"@vitejs/plugin-vue": "1",
"@vue/babel-preset-app": "5.0.8",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.20",
"chai": "5.1.1",
"cypress": "13.15.0",
"dependency-cruiser": "16.4.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-vue": "9.28.0",
"gh-pages": "6.1.1",
"globby": "^14.0.0",
"jsdom": "25.0.1",
"jsdom-global": "3.0.2",
"keycharm": "0.4.0",
"localforage": "1.10.0",
"material-design-icons-iconfont": "6.7.0",
"mocha": "10.7.3",
"patch-package": "8.0.0",
"sass": "1.79.4",
"start-server-and-test": "2.0.8",
"vis-util": "5.0.7",
"vite": "2",
"vite-plugin-commonjs": "0.10.3",
"vite-plugin-require": "1.2.14",
"vite-plugin-vue2": "2.0.3",
"vue-template-compiler": "2.7.16"
},
"volta": {
"node": "20.18.0",
"npm": "10.9.0"
}
}