-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.93 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": "charon",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"vite\" \"npm:type-check-watch\" \"npm:test-watch\"",
"build": "npm run type-check && npm run test && vite build",
"serve": "vite preview",
"type-check": "vue-tsc --build --force",
"type-check-watch": "vue-tsc --build --force --watch --preserveWatchOutput",
"test": "vitest run",
"test-watch": "vitest",
"lint": "eslint --ext .ts,.js,.vue --ignore-path ./.gitignore src",
"lint-fix": "eslint --ext .ts,.js,.vue --ignore-path ./.gitignore --fix src",
"format": "prettier --check src",
"format-fix": "prettier --write src",
"pre-commit": "npm run type-check && npm run format && npm run lint"
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@headlessui/vue": "^1.7.22",
"@heroicons/vue": "^2.1.5",
"@mdi/font": "^7.4.47",
"@parcel/watcher": "^2.4.1",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11",
"@vueuse/math": "^11",
"auto-bind": "^5.0.1",
"axios": "^1.7.7",
"consola": "^3.2.3",
"core-js": "^3.38.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"oidc-client-ts": "^3.0.1",
"pinia": "^2.2.2",
"primelocale": "^1.0.3",
"primevue": "3.53.0",
"roboto-fontface": "^0.10.0",
"router": "^1.3.8",
"vue": "^3.5.3",
"vue-component-type-helpers": "^2.1.6",
"vue-dompurify-html": "^5.1.0",
"vue-i18n": "^9.14.0",
"vue-router": "^4.4.3",
"vue3-loading-overlay": "^0.0.0",
"vue3-spinners": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@typescript-eslint/utils": "^7.16.0",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cypress": "^13.13.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"url": "^0.11.4",
"vite": "^5.4.3",
"vite-plugin-top-level-await": "^1.4.4",
"vitest": "^2.0.5",
"vue-template-compiler": "^2.7.16",
"vue-tsc": "^2.1.6"
}
}