-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.9 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
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:ssr": "vite build && vite build --ssr",
"dev": "vite",
"verify:backend": "node ./scripts/backend-smoke.mjs",
"verify:backend:full": "node ./scripts/backend-smoke.mjs --include-write-probes",
"verify:backend:dry": "node ./scripts/backend-smoke.mjs --dry-run --include-write-probes",
"verify:contracts": "node ./scripts/verify-route-contracts.mjs",
"verify:runtime": "npm run verify:backend && npm run verify:backend:full",
"format": "prettier --write resources/",
"format:check": "prettier --check resources/",
"lint": "eslint . --fix",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:a11y": "playwright test tests/e2e/a11y.spec.ts",
"test:perf": "E2E_PERF=true playwright test tests/e2e/perf.spec.ts",
"quality": "npm run format:check && npm run lint && npm run check && npm run test && npm run verify:contracts && npm audit --audit-level=moderate",
"quality:full": "npm run quality && npm run test:e2e && npm run test:perf"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@eslint/js": "^9.19.0",
"@laravel/vite-plugin-wayfinder": "^0.1.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.13.5",
"concurrently": "^9.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.1.0",
"laravel-echo": "^2.3.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"pusher-js": "^8.4.3",
"svelte-check": "^4.1.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.23.0",
"vite": "^7.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@inertiajs/svelte": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"bits-ui": "^2.15.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"laravel-vite-plugin": "^2.0.0",
"lucide-svelte": "^0.468.0",
"svelte": "^5.16.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.1",
"tw-animate-css": "^1.2.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5",
"@rollup/rollup-win32-x64-msvc": "4.9.5",
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
"@tailwindcss/oxide-win32-x64-msvc": "^4.0.1",
"lightningcss-linux-x64-gnu": "^1.29.1",
"lightningcss-win32-x64-msvc": "^1.29.1"
}
}