-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.65 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.65 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
89
90
{
"name": "service-pulse",
"version": "1.0.0",
"type": "module",
"description": "Production monitoring for distributed systems.",
"main": "index.html",
"engines": {
"node": ">=24.0.0"
},
"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 run ./src",
"test:coverage": "vitest run --coverage",
"test:application:vitest": "npx vitest run ./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.2",
"@dagrejs/dagre": "1.1.8",
"@fortawesome/fontawesome-svg-core": "7.1.0",
"@fortawesome/free-brands-svg-icons": "7.1.0",
"@fortawesome/free-regular-svg-icons": "7.1.0",
"@fortawesome/free-solid-svg-icons": "7.1.0",
"@fortawesome/vue-fontawesome": "3.1.2",
"@tinyhttp/content-disposition": "2.2.2",
"@vue-flow/controls": "1.1.3",
"@vue-flow/core": "1.48.0",
"@vuepic/vue-datepicker": "12.1.0",
"@vueuse/core": "14.1.0",
"bootstrap": "5.3.8",
"codemirror": "6.0.2",
"dayjs": "1.11.19",
"diff": "8.0.2",
"hex-to-css-filter": "6.0.0",
"lossless-json": "4.3.0",
"pinia": "3.0.4",
"vue": "3.5.25",
"vue-codemirror6": "1.4.1",
"vue-router": "4.6.4",
"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.7"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@pinia/testing": "1.0.3",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/user-event": "14.6.1",
"@testing-library/vue": "8.1.0",
"@tsconfig/node18": "18.2.6",
"@types/bootstrap": "5.2.10",
"@types/jsdom": "27.0.0",
"@types/node": "25.0.1",
"@vitejs/plugin-vue": "6.0.2",
"@vitest/coverage-v8": "4.0.12",
"@vue/tsconfig": "0.8.1",
"cross-env": "10.1.0",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-vue": "10.6.2",
"globals": "17.0.0",
"jsdom": "26.1.0",
"msw": "2.12.3",
"prettier": "3.7.4",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0",
"vite": "7.2.7",
"vite-plugin-checker": "0.12.0",
"vite-plugin-vue-devtools": "8.0.5",
"vitest": "4.0.12",
"vue-tsc": "3.1.8"
},
"msw": {
"workerDirectory": [
"public"
]
}
}