-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.67 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
{
"name": "temperature-blanket-web-app",
"version": "6.2.0",
"description": "Weather Data + Art! Web app for creating a temperature blanket",
"main": "index.html",
"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",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "pnpm test:unit && pnpm test:integration && pnpm test:e2e",
"test:unit": "vitest run src",
"test:integration": "node scripts/test-integration.js",
"test:e2e": "playwright test"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@lucide/lab": "^0.1.2",
"@lucide/svelte": "^1.23.0",
"autocompleter": "^9.3.2",
"canvg": "^4.0.3",
"chart.js": "^4.5.1",
"chroma-js": "^3.2.0",
"getimagepalette": "^2.4.0",
"globe.gl": "^2.46.1",
"idb-keyval": "^6.2.6",
"jspdf": "^4.2.1",
"node-fetch": "^3.3.2",
"suncalc": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@skeletonlabs/skeleton": "^4.15.2",
"@skeletonlabs/skeleton-svelte": "^4.15.2",
"@sveltejs/adapter-cloudflare": "^7.2.9",
"@sveltejs/kit": "^2.69.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.3.2",
"@types/chroma-js": "^3.1.2",
"@types/gapi": "^0.0.47",
"@types/google.accounts": "^0.0.18",
"@types/node": "^26.2.0",
"@types/suncalc": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"@vincjo/datatables": "^2.8.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"start-server-and-test": "^3.0.11",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"svelte-dnd-action": "^0.9.70",
"tailwindcss": "^4.3.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vaul-svelte": "1.0.0-next.3",
"vite": "^8.1.3",
"vitest": "^4.1.9",
"wrangler": "^4.120.0"
},
"browserslist": "> 0.25%",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jdvlpr/Temperature-Blanket-Web-App.git"
},
"author": "",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/jdvlpr/Temperature-Blanket-Web-App.git"
}