-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.07 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
79
80
81
82
83
84
85
86
87
{
"type": "module",
"name": "recipow",
"version": "0.2.0",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test:chrome": "npx playwright test --headed --browser=chromium",
"test:firefox": "npx playwright test --headed --browser=firefox",
"test:safari": "npx playwright test --headed --browser=webkit"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@sveltejs/adapter-vercel": "^1.0.6",
"@sveltejs/kit": "^1.7.2",
"@types/cookie": "^0.5.1",
"@types/debug": "^4.1.7",
"@types/dompurify": "^3.0.2",
"@types/ioredis": "^4.28.10",
"@types/string-hash": "^1.1.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@zerodevx/svelte-toast": "^0.7.2",
"autoprefixer": "^10.4.13",
"debug": "^4.3.4",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"redis-json": "^6.0.3",
"svelte": "^3.55.1",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.7",
"vite": "^4.1.1"
},
"dependencies": {
"@aws-sdk/abort-controller": "^3.0.0",
"@aws-sdk/client-s3": "^3.272.0",
"@aws-sdk/lib-storage": "^3.272.0",
"@tiptap/core": "2.0.0-beta.218",
"@tiptap/extension-blockquote": "2.0.0-beta.218",
"@tiptap/extension-bold": "2.0.0-beta.218",
"@tiptap/extension-bubble-menu": "2.0.0-beta.218",
"@tiptap/extension-document": "2.0.0-beta.218",
"@tiptap/extension-dropcursor": "2.0.0-beta.218",
"@tiptap/extension-floating-menu": "2.0.0-beta.218",
"@tiptap/extension-gapcursor": "2.0.0-beta.218",
"@tiptap/extension-heading": "2.0.0-beta.218",
"@tiptap/extension-highlight": "2.0.0-beta.218",
"@tiptap/extension-history": "2.0.0-beta.218",
"@tiptap/extension-image": "2.0.0-beta.218",
"@tiptap/extension-italic": "2.0.0-beta.218",
"@tiptap/extension-link": "2.0.0-beta.218",
"@tiptap/extension-paragraph": "2.0.0-beta.218",
"@tiptap/extension-placeholder": "2.0.0-beta.218",
"@tiptap/extension-subscript": "2.0.0-beta.218",
"@tiptap/extension-superscript": "2.0.0-beta.218",
"@tiptap/extension-text": "2.0.0-beta.218",
"@tiptap/extension-typography": "2.0.0-beta.218",
"@tiptap/extension-underline": "2.0.0-beta.218",
"@tiptap/extension-youtube": "2.0.0-beta.218",
"@tiptap/pm": "2.0.0-beta.218",
"@tiptap/starter-kit": "2.0.0-beta.218",
"bad-words": "^3.0.4",
"cookie": "^0.5.0",
"dompurify": "^3.0.5",
"ioredis": "^5.3.1",
"iplocation": "^7.2.0",
"jimp": "^0.3.11",
"mongodb": "^4.14.0",
"prosemirror-state": "^1.4.2",
"redis": "^4.6.4",
"string-hash": "^1.1.3",
"sveltejs-tippy": "^3.0.0",
"tippy.js": "^6.3.7",
"typescript": "^4.9.5",
"uuid": "^8.3.2"
}
}