-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 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
{
"name": "icoweb",
"description": "Frontend for ICOdaq",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test-watch": "vitest",
"tailwind": "tailwindcss -i ./src/styles/tailwind/tailwind.css -o ./src/styles/tailwind/tailwind-output.css --watch",
"generate-client": "openapi-ts --input http://localhost:33215/openapi.json --output ./src/client --client fetch",
"start": "concurrently \"npm run dev \" \"npm run tailwind \""
},
"repository": {
"type": "git",
"url": "https://git.ift.tuwien.ac.at/lab/ift/icotronic/icoweb"
},
"author": {
"name": "Moritz Breurather",
"email": "breurather@ift.at"
},
"dependencies": {
"@primevue/themes": "^4.0.0",
"@vueuse/core": "^10.11.0",
"chart.js": "^4.4.3",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-crosshair": "^2.0.0",
"chartjs-plugin-zoom": "^2.0.1",
"clipboard": "^2.0.11",
"date-fns": "^4.1.0",
"mime": "^4.0.7",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"primeicons": "^7.0.0",
"primevue": "^4.0.0",
"rollup": "^4.44.0",
"tailwindcss-primeui": "^0.3.4",
"vue": "^3.4.31",
"vue-chartjs": "^5.3.1",
"vue-router": "^4.4.0",
"xlsx": "^0.18.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.51.0",
"@pinia/testing": "^0.1.3",
"@types/chartjs-plugin-crosshair": "^1.1.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.6.1",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.27.0",
"happy-dom": "^14.12.3",
"js-yaml": "^4.1.0",
"jsdom": "^24.1.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"typescript-eslint": "^7.15.0",
"vite": "^5.2.0",
"vitest": "^1.6.1",
"vue-tsc": "^2.0.6"
}
}