-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.92 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.92 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
{
"name": "svelte-app",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "npx rollup -c",
"dev": "npx rollup -c -w",
"start": "sirv public --single --no-clear --dev --host",
"generate:api": "openapi-ts",
"lint": "eslint src --ext .ts,.svelte",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@codemirror/autocomplete": "^6.17.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/language": "^6.12.1",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.39.8",
"@lucide/svelte": "^0.563.1",
"@mateothegreat/svelte5-router": "^2.16.19",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@uiw/codemirror-theme-bbedit": "^4.21.25",
"@uiw/codemirror-theme-dracula": "^4.24.2",
"@uiw/codemirror-theme-github": "^4.23.13",
"@uiw/codemirror-theme-monokai": "^4.24.2",
"@uiw/codemirror-theme-vscode": "^4.24.2",
"ansi-to-html": "^0.7.2",
"codemirror": "^6.0.1",
"dompurify": "^3.2.0",
"dotenv": "^17.2.3",
"event-source-plus": "^0.1.15",
"postcss": "^8.4.47",
"rollup": "^4.55.1",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"sirv-cli": "^3.0.1",
"svelte": "^5.46.1",
"svelte-preprocess": "^6.0.3",
"svelte-sonner": "^1.0.7"
},
"devDependencies": {
"@babel/runtime": "^7.28.6",
"@eslint/js": "^9.39.2",
"@hey-api/openapi-ts": "0.90.4",
"@playwright/test": "^1.52.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-plugin-svelte": "^3.14.0",
"express": "^5.2.1",
"globals": "^17.0.0",
"http-proxy": "^1.18.1",
"jsdom": "^27.4.0",
"rollup-plugin-serve": "^3.0.0",
"svelte-check": "^4.3.5",
"svelte-eslint-parser": "^1.4.1",
"tailwindcss": "^4.1.13",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
}
}