-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "headnet",
"version": "0.0.0",
"type": "module",
"scripts": {
"sync": "svelte-kit sync",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"gen:openapi:latest": "openapi-typescript https://converter.swagger.io/api/convert?url=https://raw.githubusercontent.com/juanfont/headscale/refs/heads/main/gen/openapiv2/headscale/v1/headscale.swagger.json -o ./src/lib/api/headscale.d.ts",
"msw:init": "msw init",
"tauri": "tauri",
"tauri:build": "tauri build"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@playwright/test": "^1.45.3",
"@rollup/plugin-terser": "^0.4.4",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/cli": "^2.1.0",
"@types/eslint": "^9.6.0",
"@types/node": "^22.8.5",
"3d-force-graph": "^1.73.4",
"autoprefixer": "^10.4.20",
"bits-ui": "^0.21.16",
"clsx": "^2.1.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"formsnap": "^1.0.1",
"globals": "^15.0.0",
"ip-address": "^10.0.1",
"json-ast-comments": "^1.1.1",
"lucide-svelte": "^0.453.0",
"mode-watcher": "^0.4.1",
"monaco-editor": "^0.52.2",
"msw": "^2.6.5",
"openapi-fetch": "^0.13.0",
"openapi-typescript": "^7.4.2",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-sonner": "^0.3.28",
"sveltekit-superforms": "^2.20.0",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.9",
"three-spritetext": "^1.9.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.3",
"vitest": "^2.0.4",
"yaml": "^2.6.0",
"zod": "^3.23.8"
},
"dependencies": {
"@tauri-apps/plugin-http": "~2.0.1",
"dotenv": "^16.4.5"
},
"msw": {
"workerDirectory": [
"static"
]
}
}