fostr/package.json
miggymofongo 7c0e1bd008 added marked and unsafe-html to render markdown from
long form notes and adjusted note wall.
looking at tumblr for inspiration here...
2025-01-08 23:59:05 -04:00

56 lines
1.5 KiB
JSON

{
"name": "fostr",
"version": "0.0.1",
"description": "A starter kit for building PWAs!",
"main": "index.js",
"scripts": {
"dev-server": "vite --open",
"dev": "npm run dev-server",
"dev-task": "vite",
"deploy": "npx @azure/static-web-apps-cli login --no-use-keychain && npx @azure/static-web-apps-cli deploy",
"build": "tsc && vite build",
"start": "npm run dev",
"start-remote": "vite --host"
},
"author": "",
"license": "ISC",
"dependencies": {
"@editorjs/editorjs": "^2.30.7",
"@lit/localize": "^0.12.2",
"@shoelace-style/shoelace": "^2.18.0",
"@thepassle/app-tools": "^0.9.12",
"axios": "^1.7.7",
"cors": "^2.8.5",
"crelt": "^1.0.6",
"express": "^4.21.1",
"lazy.js": "^0.5.1",
"lit": "^3.2.1",
"marked": "^15.0.6",
"nostr-tools": "^2.10.1",
"prosemirror-markdown": "^1.13.1",
"prosemirror-menu": "^1.2.4",
"prosemirror-model": "^1.24.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.1",
"urlpattern-polyfill": "^10.0.0",
"workbox-build": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0"
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.20.5"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}