-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.79 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.79 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
{
"name": "pilos",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier": "prettier . --check --experimental-cli",
"prettier:fix": "prettier . --write --experimental-cli",
"docs:install": "cd docs && npm install",
"docs:dev": "cd docs && npm run start -- --host 0.0.0.0",
"cypress:open": "TZ=America/New_York ELECTRON_EXTRA_LAUNCH_ARGS=\"--lang=en --force-prefers-reduced-motion\" cypress open",
"cypress:run": "TZ=America/New_York ELECTRON_EXTRA_LAUNCH_ARGS=\"--lang=en --force-prefers-reduced-motion\" cypress run",
"create-coverage-report": "nyc report --reporter html -t coverage",
"happo": "happo"
},
"devDependencies": {
"@cypress/code-coverage": "^4.0.1",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@intlify/eslint-plugin-vue-i18n": "^4.3.0",
"cypress": "^15.11.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^6.1.0",
"eslint-plugin-jsonc": "^3.1.1",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"happo": "^6.3.4",
"nyc": "^18.0.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"vite-plugin-istanbul": "^7.2.1",
"vue-eslint-parser": "^10.4.0"
},
"dependencies": {
"@floating-ui/vue": "^1.1.10",
"@fortawesome/fontawesome-free": "^7.2.0",
"@noble/hashes": "^2.0.1",
"@primevue/auto-import-resolver": "^4.5.4",
"@primevue/themes": "^4.5.4",
"@tailwindcss/vite": "^4.2.1",
"@tiptap/extension-highlight": "^3.20.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-text-align": "^3.20.0",
"@tiptap/extension-text-style": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@tiptap/vue-3": "^3.20.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vueuse/components": "^14.2.1",
"@vueuse/core": "^14.2.0",
"axe-core": "^4.11.1",
"axios": "^1.13.6",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.3.1",
"dotenv": "^17.3.1",
"laravel-vite-plugin": "^2.1.0",
"lodash-es": "^4.17.23",
"mitt": "^3.0.1",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primelocale": "^2.3.1",
"primevue": "^4.5.4",
"tailwindcss": "^4.1.14",
"tailwindcss-primeui": "^0.6.1",
"ua-parser-js": "^1.0.41",
"unplugin-vue-components": "^31.0.0",
"vite": "^7.3.1",
"vite-plugin-vue-devtools": "^8.0.7",
"vue": "^3.5",
"vue-axe": "^3.1.2",
"vue-chartjs": "^5.3.3",
"vue-cropperjs": "^5.0.0",
"vue-i18n": "^11.2",
"vue-multiselect": "^3.4.0",
"vue-router": "^5.0.3"
},
"engines": {
"node": ">=20.0.0"
}
}