-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "workwise",
"private": true,
"version": "0.6.026",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"deploy": "./scripts/deploy.sh",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lift:test": "npx supabase start && npm run db:reset && npm run dev",
"style": "npm run format && npm run lint",
"format": "prettier . --write",
"lint": "eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run",
"db:reset": "npx supabase db reset && ./scripts/local-seed-test-data.sh",
"db:generate-data": "./scripts/generate-test-data.sh"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-vercel": "^5.6.3",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.8",
"autoprefixer": "^10.4.21",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-sql": "^0.19.1",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"supabase": "^2.53.6",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-hero-icons": "^5.2.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.6",
"vitest": "^3.0.0"
},
"dependencies": {
"@fontsource/metropolis": "^5.2.5",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.49.8",
"@tailwindcss/vite": "^4.1.10",
"daisyui": "^5.0.43",
"dotenv": "^16.5.0",
"isomorphic-dompurify": "^2.28.0",
"tailwindcss": "^4.1.10",
"zod": "^3.25.51"
}
}