forked from OpenShock/Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.67 KB
/
package.json
File metadata and controls
98 lines (98 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"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",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.1",
"@internationalized/date": "^3.10.0",
"@lucide/svelte": "^0.552.0",
"@microsoft/signalr": "^9.0.6",
"@playwright/test": "^1.56.1",
"@sveltejs/adapter-cloudflare": "^7.2.4",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/kit": "^2.48.5",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/table-core": "^8.21.3",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@types/w3c-web-serial": "^1.0.8",
"bits-ui": "2.14.2",
"bowser": "^2.12.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"formsnap": "^2.0.1",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"rollup-plugin-license": "^3.6.0",
"semver": "^7.7.3",
"svelte": "^5.43.7",
"svelte-check": "^4.3.4",
"svelte-sonner": "^1.0.6",
"sveltekit-superforms": "^2.28.1",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.1.1",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"ua-parser-js": "2.0.6",
"vaul-svelte": "1.0.0-next.7",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "^4.0.9"
},
"dependencies": {
"esptool-js": "^0.5.7",
"vite": "^7.2.4"
},
"engines": {
"node": ">=24.7.0",
"pnpm": ">=10.25.0"
},
"volta": {
"node": "24.7.0"
},
"packageManager": "pnpm@10.25.0",
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"workerd"
],
"patchedDependencies": {
"@microsoft/signalr@9.0.6": "patches/@microsoft__signalr@9.0.6.patch",
"esptool-js@0.5.7": "patches/esptool-js@0.5.7.patch"
},
"overrides": {
"cookie@<0.7.0": ">=0.7.0",
"js-yaml@<4.1.1": ">=4.1.1",
"valibot@>=0.31.0 <1.2.0": ">=1.2.0"
}
}
}