-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.46 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
{
"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.1",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/legacy-modes": "^6.5.1",
"@dagrejs/dagre": "^1.1.4",
"@tinyhttp/content-disposition": "^2.2.2",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.44.0",
"@vuepic/vue-datepicker": "^11.0.2",
"bootstrap": "^5.3.5",
"codemirror": "^6.0.1",
"diff": "^8.0.2",
"hex-to-css-filter": "^6.0.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.0.8",
"lossless-json": "^4.1.0",
"memoize-one": "^6.0.0",
"moment": "^2.30.1",
"pinia": "^3.0.3",
"vue": "^3.5.16",
"vue-codemirror6": "^1.3.18",
"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.28.0",
"@pinia/testing": "^1.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@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.17",
"@types/node": "^24.0.1",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/coverage-v8": "^3.2.3",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^10.2.0",
"flush-promises": "^1.0.2",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"msw": "^2.9.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vite": "^6.3.4",
"vite-plugin-checker": "^0.9.1",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10"
},
"msw": {
"workerDirectory": [
"public"
]
}
}