1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/editor/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

{
2023-12-17 17:07:31 +02:00
"name": "@joplin/editor",
2024-10-31 01:43:11 +02:00
"version": "3.2.0",
2023-12-17 17:07:31 +02:00
"description": "Web-based markdown editor",
"private": true,
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"test": "jest",
"test-ci": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurent22/joplin.git"
},
"devDependencies": {
2024-10-31 01:43:11 +02:00
"@joplin/lib": "~3.2",
2023-12-17 17:07:31 +02:00
"@testing-library/react-hooks": "8.0.1",
2024-10-01 04:19:50 +02:00
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/react-redux": "7.1.33",
2023-12-17 17:07:31 +02:00
"@types/styled-components": "5.1.32",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
2024-10-01 04:19:50 +02:00
"ts-jest": "29.1.5",
"typescript": "5.4.5"
2023-12-17 17:07:31 +02:00
},
"dependencies": {
"@codemirror/autocomplete": "6.18.3",
"@codemirror/commands": "6.7.1",
"@codemirror/lang-html": "6.4.9",
"@codemirror/lang-markdown": "6.3.1",
"@codemirror/language": "6.10.4",
"@codemirror/language-data": "6.3.1",
"@codemirror/legacy-modes": "6.4.2",
"@codemirror/lint": "6.8.3",
"@codemirror/search": "6.5.8",
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.35.0",
"@lezer/common": "1.2.3",
"@lezer/highlight": "1.2.1",
"@lezer/markdown": "1.3.2",
"@replit/codemirror-vim": "6.2.1"
2023-12-17 17:07:31 +02:00
}
}