package.json 620 B

123456789101112131415161718192021222324
  1. {
  2. "name": "gitnotes",
  3. "version": "0.0.1",
  4. "private": true,
  5. "devDependencies": {
  6. "shadow-cljs": "2.8.81"
  7. },
  8. "scripts": {
  9. "watch": "npx shadow-cljs watch app",
  10. "release": "npx shadow-cljs release app",
  11. "server": "npx shadow-cljs server;",
  12. "clean": "rm -rf target; rm -rf public/js/compiled; rm -rf public/js/cljs-runtime"
  13. },
  14. "dependencies": {
  15. "@material-ui/core": "^4.7.2",
  16. "@material-ui/icons": "^4.5.1",
  17. "browserfs": "^1.4.3",
  18. "isomorphic-git": "^0.72.0",
  19. "mldoc_org": "^0.1.8",
  20. "react": "^16.12.0",
  21. "react-dom": "^16.12.0",
  22. "showdown": "^1.9.1"
  23. }
  24. }