-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.61 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
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
84
85
86
87
88
{
"name": "service-pulse",
"version": "1.0.0",
"type": "module",
"description": "Production monitoring for distributed systems.",
"main": "index.html",
"scripts": {
"dev": "vite",
"dev:mocks": "cross-env NODE_ENV=dev-mocks vite",
"build": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint .",
"preview": "vite preview",
"test:component": "vitest ./src",
"test:coverage": "vitest run --coverage",
"test:application:vitest": "npx vitest ./test/specs",
"test:application": "npm run test:application:vitest"
},
"dependencies": {
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-xml": "6.1.0",
"@codemirror/legacy-modes": "6.5.1",
"@dagrejs/dagre": "1.1.5",
"@fortawesome/fontawesome-svg-core": "7.0.0",
"@fortawesome/free-brands-svg-icons": "7.0.0",
"@fortawesome/free-regular-svg-icons": "7.0.1",
"@fortawesome/free-solid-svg-icons": "7.0.0",
"@fortawesome/vue-fontawesome": "3.1.1",
"@tinyhttp/content-disposition": "2.2.2",
"@vue-flow/controls": "1.1.3",
"@vue-flow/core": "1.46.0",
"@vuepic/vue-datepicker": "11.0.2",
"bootstrap": "5.3.8",
"codemirror": "6.0.2",
"diff": "8.0.2",
"hex-to-css-filter": "6.0.0",
"lodash": "4.17.21",
"lossless-json": "4.1.1",
"memoize-one": "6.0.0",
"moment": "2.30.1",
"pinia": "3.0.3",
"vue": "3.5.20",
"vue-codemirror6": "1.3.22",
"vue-router": "4.5.1",
"vue-tippy": "6.7.1",
"vue-toastification": "2.0.0-rc.5",
"vue3-cookies": "1.0.6",
"vue3-simple-typeahead": "1.0.11",
"xml-formatter": "3.6.6"
},
"devDependencies": {
"@eslint/js": "9.34.0",
"@pinia/testing": "1.0.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/user-event": "14.6.1",
"@testing-library/vue": "8.1.0",
"@tsconfig/node18": "18.2.4",
"@types/bootstrap": "5.2.10",
"@types/lodash": "4.17.20",
"@types/node": "24.3.0",
"@vitejs/plugin-vue": "6.0.1",
"@vitest/coverage-v8": "3.2.4",
"@vue/tsconfig": "0.8.1",
"cross-env": "10.0.0",
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-vue": "10.4.0",
"flush-promises": "1.0.2",
"globals": "16.3.0",
"jsdom": "26.1.0",
"msw": "2.10.5",
"prettier": "3.6.2",
"typescript": "5.9.2",
"typescript-eslint": "8.41.0",
"vite": "7.1.3",
"vite-plugin-checker": "0.10.3",
"vitest": "3.2.4",
"vue-tsc": "3.0.6"
},
"msw": {
"workerDirectory": [
"public"
]
}
}