BoostNote-App/package.json

310 lines
13 KiB
JSON
Raw Normal View History

2016-11-19 17:36:28 +03:00
{
2020-02-14 13:10:06 +03:00
"name": "boostnote.next",
2019-12-10 23:31:03 +03:00
"productName": "Boost Note",
2021-11-29 05:36:00 +03:00
"version": "0.23.1",
2016-11-30 23:56:59 +03:00
"description": "A Polished Notes App with Github Flavored Markdown",
2019-12-11 05:57:04 +03:00
"main": "app/index.js",
"repository": {
2017-06-09 19:55:56 +03:00
"type": "git",
2021-08-27 09:34:14 +03:00
"url": "https://github.com/BoostIO/BoostNote-App.git"
},
2016-11-19 17:36:28 +03:00
"scripts": {
2021-10-18 14:32:24 +03:00
"dev:cloud": "env-cmd cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack-dev-server --mode development --config webpack.cloud.config.ts",
"dev:webpack": "env-cmd cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack-dev-server --mode development",
"dev:electron": "env-cmd ts-node -P tsconfig-webpack.json scripts/dev-electron.ts",
"dev:mobile": "env-cmd cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack-dev-server --mode development --config webpack.mobile.config.ts",
2020-04-08 21:25:40 +03:00
"start": "electron electron/index.js",
2019-12-12 11:34:08 +03:00
"lint": "eslint src/* --ext .ts,.tsx",
2018-11-14 07:39:40 +03:00
"format": "prettier --write \"src/**/*\"",
2021-10-19 13:57:14 +03:00
"test": "npm run lint && npm run test-api",
"test-api": "jest -c jest.json",
"test-api:watch": "jest -c jest.json --watch",
"tsc": "tsc --watch --noEmit",
"ico": "png2icons static/logo.png static/icon -allwe",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:electron-dev": "npm run build:electron-renderer-dev && npm run build:electron-main-dev",
2021-10-18 14:32:24 +03:00
"build:electron-staging": "npm run build:electron-renderer-staging && npm run build:electron-main-staging",
"build:electron-prod": "npm run build:electron-renderer-prod && npm run build:electron-main-prod",
"build:electron-renderer-dev": "rimraf electron/compiled && env-cmd --file .env cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production",
2021-10-18 14:32:24 +03:00
"build:electron-renderer-staging": "rimraf electron/compiled && env-cmd --file .env.staging cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production",
"build:electron-renderer-prod": "rimraf electron/compiled && env-cmd --file .env.production cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production",
"build:electron-main-dev": "rimraf electron/index.js && env-cmd --file .env ts-node -P tsconfig-webpack.json scripts/build-electron-main",
2021-10-18 14:32:24 +03:00
"build:electron-main-staging": "rimraf electron/index.js && env-cmd --file .env.staging ts-node -P tsconfig-webpack.json scripts/build-electron-main",
"build:electron-main-prod": "rimraf electron/index.js && env-cmd --file .env.production ts-node -P tsconfig-webpack.json scripts/build-electron-main",
2019-12-10 23:31:03 +03:00
"meta": "node scripts/meta.js",
2021-11-16 00:11:32 +03:00
"prepack": "rimraf dist && npm run meta && env-cmd --file .env.production cross-env PREPACK=true electron-builder --dir",
2021-10-18 14:32:24 +03:00
"pack": "rimraf dist && npm run meta && env-cmd --file .env.production electron-builder",
"release": "npm run build:electron-prod && rimraf dist && npm run meta && env-cmd --file .env.production electron-builder -- --publish",
2021-10-19 13:57:14 +03:00
"build:cloud-staging": "rimraf compiled-cloud && env-cmd --file .env.staging cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production --config webpack.cloud.config.ts",
"build:cloud-prod": "rimraf compiled-cloud && env-cmd --file .env.production cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production --config webpack.cloud.config.ts",
"build:mobile-staging": "rimraf compiled-mobile && env-cmd --file .env.staging cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production --config webpack.mobile.config.ts",
"build:mobile-prod": "rimraf compiled-mobile && env-cmd --file .env.production cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production --config webpack.mobile.config.ts",
2021-10-19 13:57:14 +03:00
"deploy:cloud-staging": "npm run build:cloud-staging && npm run deploy-upload:cloud-staging && npm run deploy-refresh:cloud-staging",
2021-10-19 14:02:51 +03:00
"deploy:cloud-prod": "npm run build:cloud-prod && npm run deploy-upload:cloud-prod && npm run deploy-refresh:cloud-prod",
2021-10-19 13:57:14 +03:00
"deploy:mobile-staging": "npm run build:mobile-staging && npm run deploy-upload:mobile-staging && npm run deploy-refresh:mobile-staging",
"deploy:mobile-prod": "npm run build:mobile-prod && npm run deploy-upload:mobile-prod && npm run deploy-refresh:mobile-prod",
"deploy-upload:cloud-staging": "env-cmd --file .env.staging -x aws s3 sync ./compiled-cloud s3://\\$CLOUD_S3_BUCKET --acl public-read",
"deploy-upload:cloud-prod": "env-cmd --file .env.production -x aws s3 sync ./compiled-cloud s3://\\$CLOUD_S3_BUCKET --acl public-read",
"deploy-upload:mobile-staging": "env-cmd --file .env.staging -x aws s3 sync ./compiled-mobile s3://\\$MOBILE_S3_BUCKET --acl public-read",
"deploy-upload:mobile-prod": "env-cmd --file .env.production -x aws s3 sync ./compiled-mobile s3://\\$MOBILE_S3_BUCKET --acl public-read",
"deploy-refresh:cloud-staging": "env-cmd --file .env.staging -x aws cloudfront create-invalidation --distribution-id \\$CLOUD_CF_ID --paths \"/*\"",
"deploy-refresh:cloud-prod": "env-cmd --file .env.production -x aws cloudfront create-invalidation --distribution-id \\$CLOUD_CF_ID --paths \"/*\"",
"deploy-refresh:mobile-staging": "env-cmd --file .env.staging -x aws cloudfront create-invalidation --distribution-id \\$MOBILE_CF_ID --paths \"/*\"",
"deploy-refresh:mobile-prod": "env-cmd --file .env.production -x aws cloudfront create-invalidation --distribution-id \\$MOBILE_CF_ID --paths \"/*\""
2016-11-19 17:36:28 +03:00
},
"keywords": [
"markdown",
"snippet",
2016-11-30 23:56:59 +03:00
"notes",
"gfm"
2016-11-19 17:36:28 +03:00
],
2018-10-30 18:05:06 +03:00
"author": "Junyoung Choi <fluke8259@gmail.com>",
2019-12-04 17:11:06 +03:00
"license": "GPL-3.0",
2016-11-19 17:36:28 +03:00
"devDependencies": {
2019-09-09 04:48:12 +03:00
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-proposal-private-property-in-object": "^7.12.1",
2019-09-09 04:48:12 +03:00
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
2021-07-06 02:23:26 +03:00
"@babel/preset-typescript": "^7.6.0",
2021-10-30 15:16:42 +03:00
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.12",
2019-09-07 18:58:49 +03:00
"@testing-library/react-hooks": "^2.0.1",
"@types/codemirror": "0.0.108",
2020-01-11 00:44:36 +03:00
"@types/dashify": "^1.0.0",
"@types/diff": "^5.0.1",
"@types/emoji-mart": "^3.0.4",
2019-09-23 12:00:24 +03:00
"@types/filenamify": "^2.0.2",
2019-12-10 22:33:42 +03:00
"@types/history": "^4.7.3",
2019-09-23 12:00:24 +03:00
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^23.3.14",
2021-02-01 22:45:40 +03:00
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.138",
2021-02-01 22:45:40 +03:00
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/mixpanel-browser": "^2.35.4",
2019-09-18 05:25:34 +03:00
"@types/node": "^12.7.5",
"@types/nprogress": "^0.2.0",
2021-02-01 22:45:40 +03:00
"@types/pako": "^1.0.1",
2020-01-11 00:44:36 +03:00
"@types/path-parse": "^1.0.19",
2019-09-23 12:00:24 +03:00
"@types/prettier": "^1.18.2",
"@types/ramda": "^0.25.51",
2019-08-27 04:07:45 +03:00
"@types/react": "^16.9.2",
2022-01-27 09:37:32 +03:00
"@types/react-content-loader": "^4.0.0",
2021-05-11 13:35:35 +03:00
"@types/react-datepicker": "^3.1.8",
2019-08-27 04:07:45 +03:00
"@types/react-dom": "^16.9.0",
2022-01-03 18:48:07 +03:00
"@types/react-grid-layout": "^1.3.0",
"@types/react-helmet": "^6.1.0",
2018-11-06 10:27:04 +03:00
"@types/react-hot-loader": "^4.1.0",
2021-02-01 22:45:40 +03:00
"@types/react-responsive": "^8.0.2",
"@types/react-select": "^4.0.11",
2019-09-12 18:36:15 +03:00
"@types/shortid": "0.0.29",
"@types/terser-webpack-plugin": "^2.2.0",
2021-08-23 08:54:43 +03:00
"@types/uuid": "^8.3.1",
2021-02-01 22:45:40 +03:00
"@types/uuid-parse": "^1.0.0",
2020-10-29 14:22:07 +03:00
"@types/webpack": "^4.41.24",
2019-09-23 12:00:24 +03:00
"@types/webpack-dev-server": "^3.1.7",
"@types/webpack-env": "^1.14.0",
2021-08-06 05:44:26 +03:00
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
2021-10-30 15:16:42 +03:00
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"chalk": "^4.0.0",
"compression-webpack-plugin": "^6.1.1",
2020-10-21 04:59:15 +03:00
"copy-webpack-plugin": "^6.2.1",
2019-09-18 05:25:34 +03:00
"cross-env": "^6.0.0",
2021-05-28 05:30:12 +03:00
"css-loader": "^5.2.6",
2020-08-04 12:22:06 +03:00
"electron-builder": "^22.8.1",
2020-12-21 11:02:43 +03:00
"electron-notarize": "^1.0.0",
2019-11-21 11:17:26 +03:00
"env-cmd": "^10.0.1",
2021-05-28 05:30:12 +03:00
"error-overlay-webpack-plugin": "^0.4.2",
2019-09-23 12:00:24 +03:00
"eslint": "^6.4.0",
2020-03-24 07:39:58 +03:00
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
2021-08-06 05:44:26 +03:00
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
2018-11-06 10:27:04 +03:00
"html-webpack-plugin": "^3.2.0",
2020-11-03 05:21:43 +03:00
"jest": "^26.6.2",
2019-09-23 12:00:24 +03:00
"json-loader": "^0.5.7",
2020-12-23 09:13:24 +03:00
"path-browserify": "^1.0.1",
2019-12-19 03:09:56 +03:00
"png2icons": "^2.0.1",
2021-10-30 15:16:42 +03:00
"postcss-flexbugs-fixes": "^5.0.2",
2022-02-03 05:55:40 +03:00
"prettier": "^2.5.1",
2019-09-23 12:00:24 +03:00
"react-hot-loader": "^4.12.13",
2019-09-07 18:58:49 +03:00
"react-test-renderer": "^16.9.0",
2019-12-10 23:31:03 +03:00
"rimraf": "^3.0.0",
2019-09-18 11:36:21 +03:00
"style-loader": "^1.0.0",
2020-11-03 05:21:43 +03:00
"ts-jest": "^26.4.3",
"ts-loader": "^7.0.3",
2019-09-18 05:25:34 +03:00
"ts-node": "^8.4.1",
2020-05-05 12:58:19 +03:00
"type-fest": "^0.13.1",
"typescript": "^4.3.5",
2019-09-18 11:36:21 +03:00
"url-loader": "^2.1.0",
2021-02-01 22:45:40 +03:00
"uuid-parse": "^1.1.0",
2020-10-29 14:22:07 +03:00
"webpack": "^4.44.2",
2019-09-23 12:00:24 +03:00
"webpack-cli": "^3.3.9",
2020-05-27 09:55:19 +03:00
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/sortable": "^6.0.0",
"@dnd-kit/utilities": "^3.0.2",
2021-12-22 01:29:22 +03:00
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/react": "^5.10.1",
2021-03-05 03:12:12 +03:00
"@mdi/js": "^5.9.55",
2019-09-16 08:58:39 +03:00
"@mdi/react": "^1.2.1",
"@stripe/react-stripe-js": "^1.2.0",
"@stripe/stripe-js": "^1.11.0",
2021-02-01 22:45:40 +03:00
"chart.js": "^2.9.4",
2019-10-09 05:26:41 +03:00
"classcat": "^4.0.2",
"codemirror": "^5.59.2",
"codemirror-abap": "^0.2.2",
"coffeescript": "^2.4.1",
2020-07-26 15:31:31 +03:00
"copy-to-clipboard": "^3.3.1",
2020-01-11 00:44:36 +03:00
"dashify": "^2.0.0",
"date-fns": "^2.16.1",
"diff": "^4.0.2",
2019-11-04 01:38:23 +03:00
"dotenv": "^8.2.0",
"electron": "^12.1.0",
2019-12-11 11:30:01 +03:00
"electron-log": "^4.0.0",
2019-12-11 10:11:42 +03:00
"electron-updater": "^4.2.0",
"emoji-mart": "^3.0.0",
"event-source-polyfill": "^1.0.22",
"event-target-shim": "^6.0.2",
"file-loader": "^5.0.2",
2020-06-29 23:05:55 +03:00
"file-type": "^14.6.2",
2020-06-06 09:52:14 +03:00
"filenamify": "^4.1.0",
2021-02-01 22:45:40 +03:00
"flowchart.js": "^1.15.0",
2021-04-23 05:26:29 +03:00
"fuse.js": "^6.4.6",
2021-02-19 05:38:08 +03:00
"got": "^11.8.1",
2020-08-04 12:22:06 +03:00
"hast-util-sanitize": "^3.0.0",
2019-09-23 12:00:24 +03:00
"hastscript": "^5.1.0",
2019-12-10 22:33:42 +03:00
"history": "^4.10.1",
2019-11-03 16:14:32 +03:00
"i18next": "^19.0.0",
2021-03-08 01:05:11 +03:00
"idb": "^6.0.0",
"immer": "^8.0.1",
2019-12-10 22:33:42 +03:00
"is-electron": "^2.2.0",
2021-03-19 10:20:00 +03:00
"is-svg": "^4.3.1",
2021-02-01 22:45:40 +03:00
"js-yaml": "^4.0.0",
"ky": "^0.26.0",
2021-11-11 08:22:43 +03:00
"lexorank": "^1.0.4",
"lodash": "^4.17.21",
2021-02-01 22:45:40 +03:00
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
2019-09-23 12:00:24 +03:00
"ltstrg": "^1.0.1",
2021-02-01 22:45:40 +03:00
"mermaid": "^8.9.0",
"mixpanel-browser": "^2.40.1",
"nprogress": "^0.2.0",
2021-07-06 02:28:31 +03:00
"overlayscrollbars-react": "^0.2.3",
2019-08-29 07:46:14 +03:00
"ow": "^0.13.2",
2021-02-15 06:30:14 +03:00
"pako": "^1.0.11",
"path-parse": "^1.0.7",
2021-09-05 20:45:23 +03:00
"path-to-regexp": "^6.2.0",
"plur": "^4.0.0",
"ramda": "^0.26.1",
2019-12-09 06:22:32 +03:00
"raw-loader": "^4.0.0",
2019-08-27 04:07:45 +03:00
"react": "^16.9.0",
2021-11-17 03:18:40 +03:00
"react-colorful": "^5.5.0",
2022-01-27 09:37:32 +03:00
"react-content-loader": "^6.1.0",
2021-05-21 06:34:34 +03:00
"react-countdown": "^2.3.2",
2021-05-27 05:14:29 +03:00
"react-datepicker": "^3.8.0",
2019-08-27 04:07:45 +03:00
"react-dom": "^16.9.0",
"react-google-login": "^5.2.2",
2021-12-22 01:29:22 +03:00
"react-grid-layout": "^1.3.0",
"react-helmet": "^6.1.0",
2019-11-03 16:14:32 +03:00
"react-i18next": "^11.0.1",
2021-02-01 22:45:40 +03:00
"react-responsive": "^8.2.0",
"react-select": "^4.0.2",
"react-switch": "^6.0.0",
2021-02-01 22:45:40 +03:00
"react-use": "^13.27.1",
2020-06-29 23:05:55 +03:00
"read-chunk": "^3.2.0",
2020-08-04 12:22:06 +03:00
"rehype-document": "^5.1.0",
"rehype-katex": "^3.1.0",
2021-02-01 22:45:40 +03:00
"rehype-parse": "^7.0.1",
2020-08-04 12:22:06 +03:00
"rehype-raw": "^4.0.2",
"rehype-react": "^6.1.0",
"rehype-sanitize": "^3.0.1",
2021-02-01 22:45:40 +03:00
"rehype-slug": "^4.0.1",
2020-08-04 12:22:06 +03:00
"rehype-stringify": "^8.0.0",
"remark-admonitions": "^1.2.1",
"remark-emoji": "^2.1.0",
2020-08-04 12:22:06 +03:00
"remark-math": "^2.0.1",
2021-05-28 09:51:07 +03:00
"remark-parse": "^8.0.0",
2020-08-04 12:22:06 +03:00
"remark-rehype": "^7.0.0",
2021-02-01 22:45:40 +03:00
"remark-shortcodes": "^0.3.1",
2020-09-12 15:14:14 +03:00
"remark-slug": "^6.0.0",
2020-08-04 12:22:06 +03:00
"remark-stringify": "^8.1.1",
"remark-toc": "^7.2.0",
2021-02-11 00:51:36 +03:00
"rxjs": "^6.6.3",
2021-02-17 08:17:07 +03:00
"semver": "^7.3.4",
2019-09-12 18:36:15 +03:00
"shortid": "^2.2.15",
"slugify": "^1.4.6",
2019-08-27 04:12:22 +03:00
"styled-components": "^4.3.2",
2020-08-04 12:22:06 +03:00
"unified": "^9.1.0",
"unist-util-visit": "^2.0.3",
2020-11-21 11:08:56 +03:00
"use-force-update": "^1.0.7",
2021-08-23 08:54:43 +03:00
"uuid": "^3.4.0",
"webpack-bundle-analyzer": "^4.4.2",
"y-codemirror": "^3.0.1",
2021-02-01 22:45:40 +03:00
"y-websocket": "^1.3.9",
"yaml": "^1.10.0",
2021-05-17 03:40:30 +03:00
"yjs": "^13.5.6"
2016-12-26 03:18:04 +03:00
},
"build": {
2019-12-19 09:41:46 +03:00
"appId": "com.boostio.boostnote",
"artifactName": "boost-note-${os}.${ext}",
2021-08-20 05:04:55 +03:00
"copyright": "Copyright © 2016-2021 BoostIO",
2020-04-08 21:25:40 +03:00
"directories": {
"app": "electron"
},
2019-12-10 22:33:42 +03:00
"asar": false,
2020-12-21 11:02:43 +03:00
"afterSign": "build-utils/afterSignHook.js",
2019-12-19 03:09:56 +03:00
"mac": {
2021-08-05 10:32:34 +03:00
"icon": "static/boostnote-mac-icon.png",
2020-12-21 11:02:43 +03:00
"hardenedRuntime": true,
"entitlementsInherit": "macOs/entitlements.mac.plist",
"entitlements": "macOs/entitlements.mac.plist"
2019-12-19 03:09:56 +03:00
},
2019-12-10 22:33:42 +03:00
"linux": {
2019-12-19 03:09:56 +03:00
"icon": "static/icon.icns",
2019-12-12 06:47:00 +03:00
"target": [
"deb",
"rpm",
2019-12-12 06:47:00 +03:00
"AppImage"
]
2019-12-11 09:40:02 +03:00
},
2021-10-18 14:32:24 +03:00
"rpm": {
"depends": [
"/usr/lib64/libuuid.so.1"
]
},
2019-12-19 03:09:56 +03:00
"win": {
2019-12-27 20:21:03 +03:00
"verifyUpdateCodeSignature": false,
2020-12-03 13:17:55 +03:00
"certificateSubjectName": "BOOST IO K.K.",
2020-02-14 12:28:05 +03:00
"icon": "static/icon.ico",
2020-02-14 13:10:06 +03:00
"target": {
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
2019-12-19 03:09:56 +03:00
},
2020-11-12 07:44:59 +03:00
"protocols": [
{
"name": "Boost Note",
"schemes": [
"boostnote"
]
}
],
2019-12-11 09:40:02 +03:00
"publish": "github"
2016-11-19 17:36:28 +03:00
}
}