This commit is contained in:
thecodrr
2022-04-17 07:22:15 +05:00
parent 1db666e6d0
commit 7ae6590350
132 changed files with 10214 additions and 206 deletions

View File

@@ -2,25 +2,61 @@
"name": "notesnook-editor",
"version": "0.0.1",
"private": true,
"main": "./",
"main": "./dist/index.js",
"dependencies": {
"@tiptap/extension-history": "^2.0.0-beta.21",
"@mdi/js": "^6.6.96",
"@mdi/react": "^1.5.0",
"@notesnook/theme": "file:../themeprovider",
"@rebass/forms": "^4.0.6",
"@tiptap/extension-character-count": "^2.0.0-beta.24",
"@tiptap/extension-color": "^2.0.0-beta.9",
"@tiptap/extension-font-family": "^2.0.0-beta.21",
"@tiptap/extension-highlight": "^2.0.0-beta.33",
"@tiptap/extension-history": "^2.0.0-beta.21",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.31",
"@tiptap/extension-link": "^2.0.0-beta.36",
"@tiptap/extension-placeholder": "^2.0.0-beta.45",
"@tiptap/extension-subscript": "^2.0.0-beta.10",
"@tiptap/extension-superscript": "^2.0.0-beta.10",
"@tiptap/extension-table": "^2.0.0-beta.48",
"@tiptap/extension-table-cell": "^2.0.0-beta.20",
"@tiptap/extension-table-header": "^2.0.0-beta.22",
"@tiptap/extension-table-row": "^2.0.0-beta.19",
"@tiptap/extension-text-align": "^2.0.0-beta.29",
"@tiptap/extension-text-style": "^2.0.0-beta.23",
"@tiptap/extension-underline": "^2.0.0-beta.23",
"@tiptap/react": "^2.0.0-beta.98",
"@tiptap/starter-kit": "^2.0.0-beta.150"
"@tiptap/starter-kit": "^2.0.0-beta.150",
"@types/rebass": "^4.0.10",
"@types/rebass__forms": "^4.0.6",
"emotion-theming": "^10.0.19",
"prosemirror-tables": "^1.1.1",
"re-resizable": "^6.9.5",
"react-color": "^2.19.3",
"react-modal": "^3.14.4",
"react-toggle": "^4.1.2",
"reactjs-popup": "^2.0.5",
"rebass": "^4.0.7",
"tinycolor2": "^1.4.2",
"tippy.js": "^6.3.7",
"zustand": "^3.7.2"
},
"devDependencies": {
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-toggle": "^4.0.3",
"@types/tinycolor2": "^1.4.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typescript": "^4.5.2",
"typescript-plugin-css-modules": "^3.4.0",
"web-vitals": "^1.1.2"
},
"scripts": {
"build": "react-scripts build"
"build": "tsc"
}
}