-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.14 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.14 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
{
"name": "beatcode-client",
"version": "0.0.1",
"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",
"format": "prettier --write .",
"lint": "prettier . --check && eslint \"src/**/*.{js,ts,svelte}\"",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:e2e": "playwright test --reporter=list"
},
"devDependencies": {
"@magidoc/plugin-svelte-marked": "^6.2.0",
"@playwright/test": "^1.49.0",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/adapter-node": "^5.2.8",
"@sveltejs/enhanced-img": "^0.4.4",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/marked": "^5.0.2",
"@types/node": "22.7.4",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"autoprefixer": "^10.4.20",
"bits-ui": "^1.3.2",
"clsx": "^2.1.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"formsnap": "^2.0.0-next.1",
"lucide-svelte": "^0.453.0",
"marked": "^15.0.7",
"mode-watcher": "^0.4.1",
"paneforge": "^1.0.0-next.1",
"postcss": "8.4.47",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-eslint-parser": "^0.43.0",
"svelte-sonner": "^0.3.28",
"sveltekit-superforms": "^2.20.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.9",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.4.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.14",
"vite-plugin-tailwind-purgecss": "0.3.3",
"vitest": "^2.1.9",
"zod": "^3.23.8"
},
"type": "module",
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@lezer/highlight": "^1.2.1",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@replit/codemirror-vim": "^6.2.1",
"@sveltejs/adapter-vercel": "^5.5.2",
"@testing-library/user-event": "^14.5.2",
"@yuvalkarif/gradient-blob": "^1.0.0",
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
"esbuild": "^0.25.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-vitest": "^0.5.4",
"espree": "^10.3.0",
"globals": "^15.13.0",
"gsap": "^3.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"jsonwebtoken": "^9.0.2",
"lucide-solid": "^0.456.0",
"posthog-js": "^1.232.4",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"runed": "^0.23.0",
"svelte-jester": "^5.0.0"
}
}