-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.26 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.26 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "digitutor",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"playwright-local": "npx playwright test",
"playwright-local:ui": "npx playwright test --ui",
"playwright-test": "npx playwright test --config playwright-test.config.ts",
"playwright-prod": "npx playwright test --config playwright-prod.config.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --plugin prettier-plugin-svelte ./src",
"format:check": "prettier --check --plugin prettier-plugin-svelte ./src",
"prepare": "husky && husky install",
"db:types": "supabase gen types typescript --local > src/supabase.ts",
"db:reset": "supabase db reset"
},
"devDependencies": {
"@melt-ui/pp": "^0.3.2",
"@playwright/test": "^1.46.1",
"@sveltejs/adapter-cloudflare": "^4.6.1",
"@sveltejs/enhanced-img": "^0.3.1",
"@sveltejs/kit": "2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@sveltejs/vite-plugin-svelte-inspector": "^2.1.0",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/svelte": "^5.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.5.2",
"@types/pg": "^8.11.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/ui": "1.6.1",
"autoprefixer": "^10.4.15",
"bits-ui": "^0.22.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-square-svelte-store": "^1.0.0",
"eslint-plugin-svelte": "^2.30.0",
"husky": "^9.1.7",
"jsdom": "^24.1.0",
"lucide-svelte": "^0.473.0",
"msw": "^2.3.1",
"postcss": "^8.4.31",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"sveltekit-flash-message": "^2.4.4",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.0",
"vite": "5.0"
},
"type": "module",
"dependencies": {
"@square/svelte-store": "^0.2.1",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.33.0",
"clsx": "^2.1.1",
"cmdk-sv": "^0.0.17",
"dotenv": "^16.4.5",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-svelte": "^8.3.0",
"formsnap": "^1.0.0",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"resend": "^4.1.2",
"stripe": "^17.5.0",
"supabase": "^1.163.6",
"svelecte": "^4.4.1",
"svelte-file-dropzone": "^2.0.8",
"svelte-legos": "^0.2.2",
"svelte-sonner": "^0.3.22",
"sveltekit-superforms": "2.11.0",
"svelty-email": "^0.0.11",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1",
"ts-custom-error": "^3.3.1",
"vaul-svelte": "^0.3.1",
"zod": "^3.23.6"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"*.ts": [
"eslint --cache --fix"
],
"*.svelte": [
"eslint --cache --fix"
],
"*./src": "prettier --write"
}
}