-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "notes",
"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",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.18.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.59.1",
"svelte-check": "^3.3.2",
"tslib": "^2.5.2",
"typescript": "^5.0.0",
"vite": "^4.3.8"
},
"type": "module",
"dependencies": {
"@hocuspocus/provider": "^2.4.0",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-collaboration": "^2.1.7",
"@tiptap/extension-document": "^2.0.4",
"@tiptap/extension-link": "^2.1.0",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"rehype-highlight": "^6.0.0",
"rehype-parse": "^8.0.5",
"rehype-raw": "^6.1.1",
"rehype-remark": "^9.1.2",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.3",
"toml": "^3.0.0",
"turndown": "^7.1.2",
"unified": "^11.0.0",
"yaml": "^2.3.1",
"yjs": "^13.6.7"
}
}