-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "squire-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"postinstall": "npx playwright install"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-cloudflare": "^4.7.2",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.13",
"@types/eslint": "^8.56.7",
"@types/is-glob": "^4.0.4",
"@types/lodash": "^4.17.7",
"@types/node": "20.14.11",
"@types/set-cookie-parser": "^2.4.10",
"autoprefixer": "10.4.19",
"daisyui": "^4.12.10",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"postcss": "8.4.39",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.77.8",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"sveltekit-superforms": "^2.16.1",
"tailwindcss": "3.4.6",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.3",
"vite-plugin-tailwind-purgecss": "0.3.3",
"vitest": "^1.2.0",
"zod": "^3.23.8"
},
"type": "module",
"dependencies": {
"@calcom/embed-snippet": "^1.3.0",
"@floating-ui/dom": "1.6.7",
"@fontsource-variable/outfit": "^5.0.13",
"@fontsource/geist-sans": "^5.0.3",
"@segment/analytics-next": "^1.72.2",
"@segment/analytics-node": "^2.1.2",
"highlight.js": "11.10.0",
"iconify-icon": "^2.1.0",
"is-glob": "^4.0.3",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"query-string": "^9.0.0",
"set-cookie-parser": "^2.6.0",
"svelte-french-toast": "^1.2.0",
"svelte-markdown": "^0.4.1",
"tailwind-merge": "^2.5.3",
"typescript-cookie": "^1.0.6",
"url-join": "^5.0.0"
}
}