-
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
/
Copy pathpackage.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": "weather-frontend",
"version": "1.0.0",
"private": "true",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write --no-editorconfig --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --ignore-path .eslintignore .",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.svelte .",
"docker": "docker compose up --build"
},
"type": "module",
"engines": {
"node": "22.10.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.4",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@vite-pwa/sveltekit": "^0.4.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-love": "^43.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-svelte": "^2.35.1",
"kolorist": "^1.8.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.12",
"svelte": "^4.2.12",
"svelte-check": "^3.6.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite": "^5.2.4",
"vite-plugin-pwa": "^0.19.7",
"workbox-precaching": "^7.0.0",
"workbox-window": "^7.0.0"
},
"dependencies": {
"chart.js": "^4.4.2",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.0.1",
"date-fns": "^3.6.0",
"svelte-french-toast": "^1.2.0"
},
"pnpm": {
"patchedDependencies": {
"chart.js@4.4.2": "patches/chart.js@4.4.2.patch"
}
}
}