Files
notesnook/apps/web/package.json

143 lines
4.4 KiB
JSON
Raw Permalink Normal View History

2019-11-15 01:24:28 +05:00
{
2022-08-26 16:12:58 +05:00
"name": "@notesnook/web",
2021-04-17 13:23:12 +05:00
"description": "Your private note taking space",
2023-01-14 13:17:01 +05:00
"version": "2.4.0",
2019-11-15 01:24:28 +05:00
"private": true,
2022-11-28 15:55:49 +05:00
"main": "./src/app.js",
2021-04-17 13:23:12 +05:00
"homepage": "https://notesnook.com/",
"repository": "https://github.com/streetwriters/notesnook",
"license": "GPL-3.0-or-later",
2019-11-15 01:24:28 +05:00
"dependencies": {
"@aws-sdk/util-base64-browser": "^3.208.0",
"@brixtol/currency-symbols": "^1.1.1",
2022-06-29 11:50:04 +05:00
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@emotion/react": "^11.10.0",
"@mdi/js": "^6.5.95",
2020-04-15 00:26:05 +05:00
"@mdi/react": "^1.4.0",
"@notesnook-importer/core": "^1.5.2",
"@notesnook/core": "*",
2022-08-26 16:12:58 +05:00
"@notesnook/crypto": "*",
"@notesnook/crypto-worker": "*",
2021-11-03 08:53:41 +05:00
"@notesnook/desktop": "file:desktop",
"@notesnook/editor": "*",
"@notesnook/localforage-getitems": "^1.4.4",
"@notesnook/logger": "*",
"@notesnook/streamable-fs": "*",
"@notesnook/theme": "*",
2022-12-16 12:03:44 +05:00
"@notesnook/web-clipper": "*",
"@tanstack/react-virtual": "^3.0.0-beta.18",
"@theme-ui/components": "^0.14.7",
"@theme-ui/core": "^0.14.7",
"allotment": "^1.12.1",
2021-12-06 12:48:44 +05:00
"async-mutex": "^0.3.2",
2021-09-20 12:10:08 +05:00
"axios": "^0.21.4",
2021-09-15 12:10:50 +05:00
"clipboard-polyfill": "^3.0.3",
"comlink": "^4.3.1",
"cronosjs": "^1.7.1",
"dayjs": "^1.10.4",
"event-source-polyfill": "^1.0.25",
2022-11-11 16:57:55 +05:00
"fflate": "^0.7.4",
"file-saver": "^2.0.5",
"framer-motion": "^4.1.17",
"hash-wasm": "^4.9.0",
"hotkeys-js": "^3.8.3",
2021-10-18 09:52:19 +05:00
"immer": "^9.0.6",
"localforage": "^1.10.0",
2022-04-01 19:01:06 +05:00
"localforage-driver-memory": "^1.0.5",
"mac-scrollbar": "^0.10.3",
"marked": "^4.1.0",
2022-03-23 19:45:04 +05:00
"phone": "^3.1.14",
2021-11-24 12:40:16 +05:00
"platform": "^1.3.6",
2021-02-20 15:03:52 +05:00
"print-js": "^1.6.0",
2022-10-19 12:10:31 +05:00
"qclone": "^1.2.0",
2021-12-20 11:20:32 +05:00
"react-dropzone": "^11.4.2",
2022-06-15 11:22:14 +05:00
"react-hot-toast": "^2.2.0",
2022-06-17 10:21:49 +05:00
"react-loading-skeleton": "^3.1.0",
"react-modal": "^3.12.1",
2020-11-01 09:56:09 +05:00
"react-qrcode-logo": "^2.2.1",
2022-07-26 23:15:57 +05:00
"react-scripts": "^5.0.1",
"react-scroll-sync": "^0.9.0",
"react-toggle": "^4.1.2",
"react-virtuoso": "^3.0.0",
2021-10-29 00:34:28 +05:00
"timeago.js": "^4.0.2",
"w3c-keyname": "^2.2.6",
2021-10-16 14:06:46 +05:00
"web-streams-polyfill": "^3.1.1",
"wouter": "^2.7.3",
"zustand": "^3.3.1"
2019-11-15 01:24:28 +05:00
},
2019-11-27 16:57:57 +05:00
"devDependencies": {
"@playwright/test": "^1.26.0",
2022-02-14 14:25:34 +05:00
"@types/file-saver": "^2.0.5",
"@types/hookrouter": "^2.2.5",
"@types/marked": "^4.0.7",
"@types/node-fetch": "^2.5.10",
"@types/platform": "^1.3.4",
"@types/quill": "^2.0.5",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
2022-04-07 02:30:36 +05:00
"@types/react-modal": "^3.13.1",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
2022-07-26 23:15:57 +05:00
"buffer": "^6.0.3",
test: setup E2E Tests (#161) * test: intialize testing environment * test: add an example test for reference * test: add simple navigation test * some initial tests * some changes * name and other small changes * permanently delete a note * permanenlt delete a note * test: improve test readability I have added different id builders for building test ids. They make the tests more readable and fluent. * test lock a note * test add a note to notebook * test favorite a note * test pin a note * test: further improve test readability basically I refactored some frequently performed actions into helper functions * test: check for presence of toast * test: properly test pinned note * test: increase tests reliability * test: fix all tests * perf: load 2co script & fonts when needed * ci: initialize e2e gh test runner * ci: do not run npm ci * test: fix lock note test for all browsers * ci: fix playwright tests * ci: fix yaml syntax error * ci: no need to use custom ssh-agent action for eslint * test: improve lock a note test * ci: add GH_DEPLOY_KEY env in eslint.yml * test: check for state: "visible" in isPresent * test: do not check for toast in lock a note test * test: log crypto error to console * test: skip "lock a note" test for now until further investigation * ci: only run tests on firefox & chromium * fix: fix useMediaQuery for WebKit browsers * ci: try webkit once again * properties tests * test tag a color /properties * test: run some tests sequentially and independently * test: reenable all tests * fix: user only able to type on character in title box * test: skip lock/unlock tests in CI * test edit a notebook * test: fix all tests * test: fix and add more notebook tests * test: do not only run edit topics test * test: make sure all notes tests pass * test: skip add note to notebook tests for now * test: make sure all tests pass Co-authored-by: alihamuh <alihamuh@gmail.com>
2020-09-28 14:31:45 +05:00
"chalk": "^4.1.0",
2021-08-20 11:50:29 +05:00
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"file-loader": "^6.2.0",
2021-07-09 01:17:08 +05:00
"find-process": "^1.4.4",
2022-05-25 06:55:04 +05:00
"ip": "^1.1.8",
"lorem-ipsum": "^2.0.4",
2022-12-16 12:03:44 +05:00
"otplib": "^12.0.1",
2021-10-21 12:44:34 +05:00
"patch-package": "^6.4.7",
"progress-bar-webpack-plugin": "^2.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"source-map-explorer": "^2.5.2",
"typescript": "^4.8.2",
"webpack-bundle-analyzer": "^4.5.0",
"worker-loader": "^3.0.8"
},
"overrides": {
"react@>17": "17.0.2",
"react-dom@>17": "17.0.2",
"@types/react@>17": "17.0.2",
"@types/react-dom@>17": "17.0.2"
2019-11-27 16:57:57 +05:00
},
2019-11-15 01:24:28 +05:00
"scripts": {
"start": "env-cmd -e all,dev,web react-scripts start",
"start:desktop": "env-cmd -e all,desktop react-scripts start",
"start:test": "serve -s build/ -p 3000",
2022-07-26 23:15:57 +05:00
"build": "env-cmd -e all,web react-scripts --max_old_space_size=8092 build",
"build:test": "env-cmd -e all,dev,web,silent react-scripts build --test",
2022-07-04 14:51:47 +05:00
"build:beta": "env-cmd -e all,web,beta react-scripts build",
2021-10-22 17:07:43 +05:00
"build:profile": "env-cmd -e all,web react-scripts build --profile",
"build:desktop": "env-cmd -e all,desktop react-scripts build",
2021-01-04 12:28:54 +05:00
"deploy": "./scripts/deploy.sh",
"debug": "env-cmd -e all,dev,web,silent react-scripts start",
2022-12-05 16:52:44 +05:00
"test": "playwright test -u",
2019-11-27 18:03:01 +05:00
"eject": "react-scripts eject",
2021-10-21 12:44:34 +05:00
"analyze": "source-map-explorer 'build/static/js/*.js'",
"postinstall": "patch-package"
2019-11-15 01:24:28 +05:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
2020-02-20 10:43:58 +05:00
"not op_mini all",
"ie >= 9"
2019-11-15 01:24:28 +05:00
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
2020-02-20 10:43:58 +05:00
"last 1 safari version",
"last 3 ie version",
"last 4 edge version"
2019-11-15 01:24:28 +05:00
]
2021-03-10 22:35:29 +05:00
},
"author": {
2023-01-16 13:44:52 +05:00
"name": "Streetwriters (Private) Limited",
2021-03-10 22:35:29 +05:00
"email": "support@streetwriters.co",
"url": "https://streetwriters.co"
2019-11-15 01:24:28 +05:00
}
2020-10-03 14:52:22 +05:00
}