-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.13 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
91
92
93
94
95
{
"name": "reev-frontend",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "vite --port 8081",
"dev-public": "vite --host 0.0.0.0 --port 8081",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --coverage",
"test:unit:nocov": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern 'src/ext/reev-frontend-lib/**'",
"format": "prettier --write src/ *.ts *.mts *.json",
"format:check": "prettier --list-different src/ *.ts *.mts *.json"
},
"dependencies": {
"@hey-api/client-fetch": "^0.4.3",
"@hey-api/openapi-ts": "^0.60.1",
"@mdi/font": "^7.4.47",
"@protobuf-ts/runtime": "^2.9.4",
"@reactgular/chunks": "^1.0.1",
"@sentry/browser": "^9.8.0",
"@sentry/integrations": "^7.120.2",
"@sentry/tracing": "^7.114.0",
"@sentry/vue": "^10.5.0",
"@tanstack/vue-query": "^5.67.2",
"@tanstack/vue-query-devtools": "^5.66.0",
"@types/luxon": "^3.4.2",
"@vue/eslint-config-standard": "^8.0.1",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"fast-deep-equal": "^3.1.3",
"igv": "^3.2.4",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"mitt": "^3.0.1",
"pinia": "^3.0.1",
"plotly.js-dist": "^3.0.1",
"title-case": "^4.3.1",
"unplugin-fonts": "^1.3.1",
"vega": "^5.30.0",
"vega-embed": "^6.29.0",
"vue": "^3.5.13",
"vue-matomo": "^4.2.0",
"vue-router": "^4.3.2",
"vuetify": "^3.7.7"
},
"devDependencies": {
"@pinia/testing": "^0.1.7",
"@rollup/plugin-typescript": "^12.1.2",
"@rushstack/eslint-patch": "^1.10.3",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.6.8",
"@storybook/addon-links": "^8.4.6",
"@storybook/blocks": "^8.5.3",
"@storybook/test": "^8.3.4",
"@storybook/vue3": "^8.5.8",
"@storybook/vue3-vite": "^8.6.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.17.13",
"@types/node": "^22.13.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vitest/coverage-istanbul": "^1.5.2",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^8.57.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^26.0.0",
"npm-check-updates": "^17.1.12",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.1",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^6.2.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^1.3.1",
"vitest-canvas-mock": "^0.3.3",
"vitest-fetch-mock": "^0.2.2",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-tsc": "^2.2.8"
}
}