-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.78 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
{
"name": "app",
"version": "0.3.1",
"private": true,
"type": "module",
"portless": {
"name": "pt-app",
"script": "dev:app"
},
"scripts": {
"dev": "portless",
"dev:app": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e:scheduler": "playwright test -c e2e/playwright.scheduler.config.ts",
"test:e2e:scheduler:headed": "playwright test -c e2e/playwright.scheduler.config.ts --headed",
"test:e2e:scheduler:debug": "playwright test -c e2e/playwright.scheduler.config.ts --debug",
"test:e2e:media:mocked": "sh -c 'if [ \"$1\" = -- ]; then shift; fi; playwright test -c e2e/playwright.media-mocked.config.ts \"$@\"' --",
"test:e2e:media:mocked:headed": "playwright test -c e2e/playwright.media-mocked.config.ts --headed",
"test:e2e:media:real": "sh -c 'if [ \"$1\" = -- ]; then shift; fi; playwright test -c e2e/playwright.media-real.config.ts \"$@\"' --",
"test:e2e:media:real:headed": "playwright test -c e2e/playwright.media-real.config.ts --headed"
},
"dependencies": {
"@profiletailors/shared-web": "workspace:*",
"@atlaskit/pragmatic-drag-and-drop": "^1.8.1",
"driver.js": "^1.8.0",
"@internationalized/date": "3.12.3",
"@lucide/vue": "1.27.0",
"@tanstack/vue-table": "^9.0.0",
"@unovis/vue": "^1.6.7",
"@vueuse/core": "^14.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.1",
"embla-carousel-vue": "^8.6.0",
"pinia": "4.0.2",
"reka-ui": "2.10.1",
"shadcn-vue": "2.8.0",
"tailwind-merge": "3.6.0",
"tw-animate-css": "1.4.0",
"vaul-vue": "^0.4.1",
"vee-validate": "^4.15.1",
"vue": "3.5.41",
"vue-i18n": "11.4.8",
"vue-input-otp": "^0.3.2",
"vue-router": "5.2.0",
"vue-sonner": "^2.0.9",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@bgotink/playwright-coverage": "^0.3.2",
"@playwright/test": "^1.62.1",
"@tailwindcss/vite": "4.3.3",
"@tsconfig/node24": "24.0.4",
"@types/node": "25.9.5",
"@vitejs/plugin-vue": "6.0.8",
"@vitest/coverage-v8": "^3.2.7",
"@vitest/ui": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "0.9.1",
"jsdom": "^29.1.1",
"npm-run-all2": "9.0.3",
"tailwindcss": "4.3.3",
"typescript": "~6.0.3",
"vite": "7.3.6",
"vite-plugin-vue-devtools": "8.2.1",
"vitest": "^3.2.7",
"vue-tsc": "3.3.9"
},
"engines": {
"node": "20.19.0 || >=22.12.0"
},
"pnpm": {
"overrides": {
"shell-quote": ">=1.10.0"
}
}
}