-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.95 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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write \"app/frontend/**/*.{js,svelte,css}\"",
"format:check": "prettier --check \"app/frontend/**/*.{js,svelte,css}\"",
"test": "yarn test:e2e",
"test:e2e": "./playwright/run-e2e.sh",
"test:e2e:ui": "./playwright/run-e2e.sh --ui",
"test:ct": "npx playwright test -c playwright-ct.config.js",
"test:ct:ui": "npx playwright test -c playwright-ct.config.js --ui",
"test:backend-setup": "./playwright/setup-test-server.sh",
"test:unit": "vitest",
"test:unit:ui": "vitest --ui"
},
"devDependencies": {
"@4az/prettier-plugin-html-erb": "^0.0.7",
"@internationalized/date": "^3.9.0",
"@lucide/svelte": "^0.515.0",
"@playwright/experimental-ct-svelte": "^1.55.0",
"@playwright/test": "^1.55.0",
"@prettier/plugin-ruby": "^4.0.4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/svelte": "^5.2.8",
"@types/node": "^24.3.0",
"bits-ui": "^2.8.10",
"clsx": "^2.1.1",
"daisyui": "^5.0.51",
"jsdom": "^26.1.0",
"phosphor-svelte": "^3.0.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte-sonner": "^1.0.5",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^7.0.4",
"vite-plugin-ruby": "^5.1.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@inertiajs/svelte": "^2.0.14",
"@phosphor-icons/core": "^2.1.1",
"@rails/actioncable": "^8.0.201",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"date-fns": "^4.1.0",
"marked": "^16.3.0",
"mode-watcher": "^1.1.0",
"svelte": "^5.35.6",
"svelte-highlight": "^7.8.4",
"svelte-radix": "^2.0.1",
"svelte-streamdown": "^2.4.5",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.5"
}
}