mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
ff5c854192
- Use new notification request/opt-in flow for push - Implement unsubscribing - Implement muting - Implement emojis in title - Add iOS specific PWA warning - Don’t use websockets when web push is enabled - Fix duplicate notifications - Implement default web push setting - Implement changing subscription type - Implement web push subscription refresh - Implement web push notification click
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "ntfy",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "NODE_OPTIONS=\"--enable-source-maps\" vite",
|
|
"build": "vite build",
|
|
"serve": "vite preview",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"lint": "eslint --report-unused-disable-directives --ext .js,.jsx ./src/"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.11.0",
|
|
"@emotion/styled": "^11.11.0",
|
|
"@mui/icons-material": "^5.4.2",
|
|
"@mui/material": "latest",
|
|
"dexie": "^3.2.1",
|
|
"dexie-react-hooks": "^1.1.1",
|
|
"humanize-duration": "^3.27.3",
|
|
"i18next": "^21.6.14",
|
|
"i18next-browser-languagedetector": "^6.1.4",
|
|
"i18next-http-backend": "^1.4.0",
|
|
"js-base64": "^3.7.2",
|
|
"react": "latest",
|
|
"react-dom": "latest",
|
|
"react-i18next": "^11.16.2",
|
|
"react-infinite-scroll-component": "^6.1.0",
|
|
"react-router-dom": "^6.2.2",
|
|
"stacktrace-gps": "^3.0.4",
|
|
"stacktrace-js": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"prettier": "^2.8.8",
|
|
"vite": "^4.3.9",
|
|
"vite-plugin-pwa": "^0.15.0"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"printWidth": 140
|
|
}
|
|
}
|