-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.83 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": "opennote",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"frontend": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"backend": "python manage.py runserver",
"migrate": "python manage.py makemigrations; python manage.py migrate",
"createsuperuser": "export DJANGO_SUPERUSER_PASSWORD=admin; python manage.py createsuperuser --noinput --username admin",
"cli:themegen": "python cli/theme-generator/main.py"
},
"dependencies": {
"@heroicons/vue": "^2.0.11",
"@mdi/js": "^7.1.96",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.217",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.209",
"@tiptap/extension-dropcursor": "^2.0.0-beta.217",
"@tiptap/extension-gapcursor": "^2.0.0-beta.217",
"@tiptap/extension-link": "^2.0.0-beta.199",
"@tiptap/extension-placeholder": "^2.0.0-beta.199",
"@tiptap/extension-subscript": "^2.0.0-beta.217",
"@tiptap/extension-superscript": "^2.0.0-beta.217",
"@tiptap/extension-task-item": "^2.0.0-beta.199",
"@tiptap/extension-task-list": "^2.0.0-beta.199",
"@tiptap/extension-underline": "^2.0.0-beta.217",
"@tiptap/pm": "^2.0.0-beta.217",
"@tiptap/starter-kit": "^2.0.0-beta.199",
"@tiptap/suggestion": "^2.0.0-beta.220",
"@tiptap/vue-3": "^2.0.0-beta.199",
"@types/uuid": "^8.3.4",
"@vueuse/components": "^9.10.0",
"@vueuse/core": "^9.3.0",
"autoprefixer": "^10.4.12",
"axios": "^1.1.3",
"lowlight": "^2.8.0",
"pinia": "^2.0.28",
"postcss": "^8.4.17",
"sass": "^1.55.0",
"slugify": "^1.6.5",
"tailwindcss": "^3.1.8",
"uuid": "^9.0.0",
"vue": "^3.2.37",
"vue-router": "4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vue-tsc": "^0.40.4"
}
}