forked from mattcroat/joy-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "joy-of-code",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@playwright/test": "^1.38.0",
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/kit": "1.25.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"sass": "^1.67.0",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.2",
"typescript": "~5.2.2",
"vite": "^4.4.9"
},
"dependencies": {
"@melt-ui/svelte": "^0.49.1",
"@supabase/supabase-js": "^2.33.2",
"gray-matter": "^4.0.3",
"lite-youtube-embed": "^0.2.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.6.3",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-autolink-headings": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-slug": "^7.0.1",
"remark-smartypants": "^2.0.0",
"remark-toc": "^8.0.1",
"unified": "^11.0.3",
"unist-util-visit": "^5.0.0"
}
}