package.json (view raw)
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 |
{
"name": "snow-editor",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 41737",
"build": "vite build",
"preview": "vite preview --config vite.preview.config.js --host 0.0.0.0 --port 41737",
"test": "node --test src/lib/org/**/*.test.js",
"test:e2e": "playwright test"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@lezer/highlight": "^1.2.3",
"@orgajs/cm-lang": "^1.3.0",
"@orgajs/reorg-parse": "^4.4.1",
"@orgajs/reorg-rehype": "^4.3.11",
"dompurify": "^3.2.4",
"highlight.js": "^11.11.1",
"marked": "^15.0.7",
"orga": "^4.7.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"rehype-stringify": "^10.0.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^29.1.1",
"vite": "^6.2.0"
}
}
|