-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 KB
/
package.json
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
{
"name": "frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "pnpm run test:unit && pnpm run test:integration",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@internationalized/date": "^3.7.0",
"@microsoft/signalr": "^8.0.7",
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-cloudflare": "^5.0.1",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tanstack/table-core": "^8.20.5",
"@types/crypto-js": "^4.2.2",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.7",
"@types/semver": "^7.5.8",
"@types/w3c-web-serial": "^1.0.7",
"autoprefixer": "^10.4.20",
"bits-ui": "1.0.0-next.78",
"bowser": "^2.11.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"lucide-svelte": "^0.473.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.10",
"semver": "^7.6.3",
"svelte": "^5.19.0",
"svelte-check": "^4.1.4",
"svelte-sonner": "^0.3.28",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"ua-parser-js": "2.0.0",
"vite-plugin-mkcert": "^1.17.6",
"vitest": "^3.0.2"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"esptool-js": "^0.5.2",
"vite": "^6.0.7"
},
"engines": {
"node": "^20.18",
"pnpm": "^9.12.3"
},
"volta": {
"node": "20.18.0"
},
"packageManager": "pnpm@9.12.3",
"pnpm": {
"patchedDependencies": {
"@microsoft/signalr@8.0.7": "patches/@microsoft__signalr@8.0.7.patch",
"esptool-js@0.5.2": "patches/esptool-js@0.5.2.patch"
},
"overrides": {
"cookie@<0.7.0": ">=0.7.0"
}
}
}