-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
88 lines (88 loc) · 2.7 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"docs:install": "cd docs && npm install",
"docs:dev": "cd docs && npm run start -- --host 0.0.0.0",
"cypress:open": "TZ=America/New_York cypress open",
"cypress:run": "TZ=America/New_York cypress run",
"create-coverage-report": "nyc report --reporter html -t coverage"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@eslint/json": "^0.8.0",
"@intlify/eslint-plugin-vue-i18n": "^3.1.0",
"cypress": "^13.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"nyc": "^17.1.0",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"vite-plugin-istanbul": "^6.0.2",
"vue-eslint-parser": "^9.4.3"
},
"dependencies": {
"@floating-ui/vue": "^1.1.5",
"@fortawesome/fontawesome-free": "^6.7.1",
"@noble/hashes": "^1.6.1",
"@primevue/auto-import-resolver": "^4.1.1",
"@primevue/themes": "^4.1.1",
"@tiptap/extension-color": "^2.10.3",
"@tiptap/extension-highlight": "^2.10.3",
"@tiptap/extension-image": "^2.10.3",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/extension-text-align": "^2.10.3",
"@tiptap/extension-text-style": "^2.10.3",
"@tiptap/extension-underline": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@tiptap/vue-3": "^2.10.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vueuse/components": "^12.0.0",
"@vueuse/core": "^12.0.0",
"autoprefixer": "^10.4.20",
"axe-core": "^4.10.2",
"axios": "^1.7.8",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.1",
"dotenv": "^16.4.5",
"laravel-vite-plugin": "^1.0.6",
"lodash": "^4.17.19",
"mitt": "^3.0.1",
"pinia": "^2.2.8",
"postcss": "^8.4.49",
"primeicons": "^7.0.0",
"primevue": "^4.1.1",
"sass": "^1.81.0",
"tailwindcss": "^3.4.15",
"tailwindcss-primeui": "^0.3.3",
"ua-parser-js": "^1.0.39",
"unplugin-vue-components": "^0.27.5",
"vite": "^5.4.11",
"vue": "^3.5",
"vue-axe": "^3.1.2",
"vue-chartjs": "^5.3.2",
"vue-cropperjs": "^5.0.0",
"vue-i18n": "^10.0",
"vue-multiselect": "^3.1.0",
"vue-router": "^4.5.0"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
}