-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.26 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
{
"name": "sledgehammertime",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"generate-translation-credits": "tsx --tsconfig ./tsconfig.utils.json ./utils/translation-credits.ts",
"dev:server": "vite",
"dev:queue": "php artisan horizon",
"dev": "concurrently -p name npm:dev:*",
"lint": "eslint resources/**/*.{ts,vue}",
"build:type-check": "vue-tsc",
"build:static": "vite build",
"build:ssr": "vite build --ssr",
"build": "concurrently -p name npm:build:*",
"test": "vitest --coverage"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inertiajs/vue3": "^2.3.11",
"@types/js-cookie": "^3.0.6",
"@types/js-levenshtein": "^1.1.3",
"@types/node": "^24.10.1",
"@vheemstra/vite-plugin-imagemin": "^2.2.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vitest/coverage-v8": "^4.0.18",
"@vue/language-server": "^3.2.2",
"@vue/server-renderer": "^3.5.27",
"autoprefixer": "^10.4.12",
"axios": "^1.1.2",
"classnames": "^2.3.2",
"concurrently": "^9.2.1",
"deepmerge-ts": "^7.1.3",
"dotenv": "^17.2.3",
"eslint": "^10.0.2",
"eslint-plugin-vue": "^10.8.0",
"js-cookie": "^3.0.5",
"laravel-vite-plugin": "^2.1.0",
"laravel-vue-i18n": "^2.8.0",
"postcss": "^8.4.47",
"sass": "^1.80.4",
"sharp": "^0.34.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue": "^3.5.27",
"vue-country-flag-next": "^2.3.2",
"vue-tippy": "^6.7.1",
"vue-tsc": "^3.2.2",
"ziggy-js": "^2.6.0"
},
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/vue-fontawesome": "^3.1.2",
"@vueuse/core": "^14.1.0",
"chart.js": "^4.5.1",
"chrono-node": "^2.9.0",
"date-fns": "^4.1.0",
"js-levenshtein": "^1.1.6",
"lorem-ipsum": "^2.0.8",
"playwright": "^1.58.0",
"the-new-css-reset": "^1.11.3",
"vue-chartjs": "^5.3.3"
},
"engines": {
"node": ">=24"
}
}