-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.63 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
{
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:ssr": "vite build && vite build --ssr",
"dev": "vite",
"format": "prettier --write resources/",
"format:check": "prettier --check resources/",
"lint": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:update-snapshots": "playwright test --update-snapshots",
"test:e2e:codegen": "playwright codegen http://localhost:8000",
"test:all": "run-s test:unit test:e2e",
"typecheck": "vue-tsc --noEmit --composite false",
"validate": "npm run lint && npm run typecheck && npm run test:unit"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@pinia/testing": "^1.0.2",
"@playwright/test": "^1.53.0",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/test-utils": "^2.4.0-alpha.2",
"dotenv-cli": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"glob": "^11.0.3",
"happy-dom": "^18.0.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass-embedded": "^1.89.1",
"typescript-eslint": "^8.23.0",
"vitest": "^3.2.3",
"vue-tsc": "^2.2.4"
},
"dependencies": {
"@inertiajs/vue3": "^2.0.0",
"@sentry/vue": "^9.30.0",
"@tailwindcss/vite": "^4.1.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vueuse/core": "^12.8.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^1.0",
"lucide-vue-next": "^0.468.0",
"pinia": "^3.0.2",
"pinia-plugin-persistedstate": "^4.3.0",
"reka-ui": "^2.2.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.1",
"tw-animate-css": "^1.2.5",
"typescript": "^5.2.2",
"vite": "^6.3.5",
"vue": "^3.5.13",
"ziggy-js": "^2.4.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5",
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
"lightningcss-linux-x64-gnu": "^1.29.1"
}
}