mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
* Allow to add and edit notes * Implement search * Implement settings * Implement checkout page * Implement paywall * Fix inconsistent margin * Render mobile menu * Allow to logout * emails * Implement user migration * Always build standalone * Embed digest in email * Move browser extension * Fix test * Use system font * Add favicon and app icons * Make tabbar smaller * Initialize focus on editor * Fix various UI audit issues * Simplify asset serving * Register sw * Upgrade deps
52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
{
|
|
"name": "dnote-extension",
|
|
"description": "Dnote browser extension for Chrome and Firefox",
|
|
"scripts": {
|
|
"clean": "TARGET=firefox gulp clean && TARGET=chrome gulp clean",
|
|
"build:chrome": "TARGET=chrome NODE_ENV=production concurrently webpack \"gulp build\"",
|
|
"build:firefox": "TARGET=firefox NODE_ENV=production concurrently webpack \"gulp build\"",
|
|
"package:chrome": "TARGET=chrome NODE_ENV=production gulp package",
|
|
"package:firefox": "TARGET=firefox NODE_ENV=production gulp package",
|
|
"watch:chrome": "TARGET=chrome NODE_ENV=development concurrently \"webpack --watch\" \"gulp watch\" ",
|
|
"watch:firefox": "TARGET=firefox NODE_ENV=development concurrently \"webpack --watch\" \"gulp watch\" "
|
|
},
|
|
"author": "Monomax Software Pty Ltd",
|
|
"license": "GPL-3.0-or-later",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"classnames": "^2.2.5",
|
|
"lodash": "^4.17.15",
|
|
"qs": "^6.9.0",
|
|
"react": "^16.9.0",
|
|
"react-dom": "^16.9.0",
|
|
"react-redux": "^7.0.0",
|
|
"react-select": "^3.0.0",
|
|
"redux": "^4.0.4",
|
|
"redux-logger": "^3.0.6",
|
|
"redux-thunk": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^16.9.3",
|
|
"@types/react-dom": "^16.9.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.3.1",
|
|
"@typescript-eslint/parser": "^2.3.1",
|
|
"concurrently": "^4.1.2",
|
|
"del": "^5.0.0",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-react": "^7.14.3",
|
|
"eslint-plugin-react-hooks": "^2.0.1",
|
|
"gulp": "^4.0.0",
|
|
"gulp-if": "^3.0.0",
|
|
"gulp-imagemin": "^6.0.0",
|
|
"gulp-livereload": "^4.0.2",
|
|
"gulp-replace": "^1.0.0",
|
|
"gulp-zip": "^5.0.0",
|
|
"prettier": "^1.18.2",
|
|
"ts-loader": "^6.1.2",
|
|
"typescript": "^3.6.3",
|
|
"webpack": "^4.41.0",
|
|
"webpack-cli": "^3.3.9"
|
|
}
|
|
}
|