-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "frank-fo-svelte",
"version": "5.0.0",
"main": "dist/index.html",
"author": "@gairal",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"deploy": "bun run build && gcloud app deploy --project com-gairal-frank-22",
"dev": "vite",
"gcp-build": "bun run build",
"lint": "biome check",
"prepare": "husky",
"preview": "bun run build && vite preview",
"test-cov": "bun run test --collectCoverage",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/svelte": "^5.0.4",
"@types/google.maps": "^3.57.0",
"@types/gtag.js": "^0.0.20",
"autoprefixer": "^10.4.20",
"husky": "^9.1.5",
"jsdom": "^26.0.0",
"lint-staged": "^15.2.10",
"npm": "^11.0.0",
"postcss": "^8.4.45",
"sass": "^1.78.0",
"svelte-check": "^4.0.1",
"tailwindcss": "^3.4.10",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vitest": "^3.0.2",
"vitest-fetch-mock": "^0.4.0",
"vite-plugin-pwa": "^0.21.1"
},
"dependencies": {
"@beyonk/gdpr-cookie-consent-banner": "^12.1.4",
"date-fns": "^4.0.0",
"svelte": "^4.2.19",
"svelte-click-outside": "^1.0.0",
"svelte-routing": "^2.13.0"
},
"lint-staged": {
"*.{js,cjs,json,ts,svelte,css,css,md}": ["bun lint --fix"]
}
}