Files
notesnook/apps/web/package.json

110 lines
3.4 KiB
JSON
Raw Normal View History

2019-11-15 01:24:28 +05:00
{
2021-04-17 13:23:12 +05:00
"name": "notesnook",
"description": "Your private note taking space",
2021-07-03 13:15:10 +05:00
"version": "1.4.1",
2019-11-15 01:24:28 +05:00
"private": true,
"main": "./src/App.js",
2021-04-17 13:23:12 +05:00
"homepage": "https://notesnook.com/",
"repository": "https://github.com/streetwriters/notesnook",
2019-11-15 01:24:28 +05:00
"dependencies": {
"@mdi/js": "^5.9.55",
2020-04-15 00:26:05 +05:00
"@mdi/react": "^1.4.0",
"@notesnook/desktop": "./desktop/",
2019-11-27 16:57:57 +05:00
"@rebass/forms": "^4.0.6",
"@streetwritersco/tinymce-plugins": "^1.0.0",
2021-06-02 11:30:11 +05:00
"@tinymce/tinymce-react": "^3.12.6",
"clipboard": "^2.0.6",
2020-09-14 11:59:12 +05:00
"cogo-toast": "^4.2.3",
"compressorjs": "^1.0.7",
"currency-symbol-map": "^5.0.1",
"dayjs": "^1.10.4",
2019-11-20 16:43:36 +05:00
"emotion-theming": "^10.0.19",
"esbuild": "^0.12.15",
"eventsource": "^1.0.7",
2020-04-17 12:52:55 +05:00
"fast-sort": "^2.1.1",
"framer-motion": "^3.3.0",
"highlight.js": "^11.1.0",
"hotkeys-js": "^3.8.3",
"immer": "^8.0.1",
2020-02-12 01:40:52 +05:00
"localforage": "^1.7.3",
"localforage-getitems": "https://github.com/thecodrr/localForage-getItems.git",
2021-02-20 17:52:47 +05:00
"notes-core": "npm:@streetwriters/notesnook-core@latest",
2021-02-20 15:03:52 +05:00
"print-js": "^1.6.0",
"qclone": "^1.0.4",
"rangy": "^1.3.0",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-modal": "^3.12.1",
2020-11-01 09:56:09 +05:00
"react-qrcode-logo": "^2.2.1",
"react-scripts": "^4.0.3",
"react-scroll-sync": "^0.9.0",
2020-11-25 00:45:49 +05:00
"react-scrollbars-custom": "^4.0.25",
"react-virtualized-auto-sizer": "^1.0.4",
"react-virtuoso": "^1.9.3",
2019-11-30 23:57:53 +05:00
"rebass": "^4.0.7",
"timeago-react": "^3.0.2",
2021-06-02 11:30:11 +05:00
"tinymce": "5.8.1",
"uzip": "^0.20201231.0",
"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": {
2021-07-07 14:22:11 +05:00
"@playwright/test": "^1.12.3",
"@types/hookrouter": "^2.2.5",
"@types/node-fetch": "^2.5.10",
"@types/quill": "^2.0.5",
2020-04-17 12:52:55 +05:00
"babel-eslint": "^10.1.0",
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",
"env-cmd": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-react-app": "^6.0.0",
2020-04-17 12:52:55 +05:00
"eslint-plugin-import": "^2.20.2",
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
"eslint-plugin-jest-playwright": "^0.2.1",
2020-04-17 12:52:55 +05:00
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
2021-07-09 01:17:08 +05:00
"find-process": "^1.4.4",
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
"progress-bar-webpack-plugin": "^2.1.0",
"source-map-explorer": "^2.5.2",
"typescript": "^4.1.5",
2021-07-07 14:09:51 +05:00
"webpack-bundle-analyzer": "^4.4.0",
"zx": "^2.0.0"
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",
"build": "env-cmd -e all,web react-scripts build",
"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",
2021-07-07 14:09:51 +05:00
"test": "yarn zx ./scripts/run-tests.mjs",
2021-05-31 09:53:31 +05:00
"test:debug": "env-cmd -e dev,debug,silent jest -c jest.e2e.config.js",
2019-11-27 18:03:01 +05:00
"eject": "react-scripts eject",
2020-12-24 09:40:54 +05:00
"update": "npm i @streetwriters/editor@latest @streetwriters/notesnook-core@latest @streetwriters/theme@latest",
"analyze": "source-map-explorer 'build/static/js/*.js'"
2019-11-15 01:24:28 +05:00
},
"eslintConfig": {
"extends": "react-app"
},
"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": {
"name": "Streetwriters (Private) Ltd.",
"email": "support@streetwriters.co",
"url": "https://streetwriters.co"
2019-11-15 01:24:28 +05:00
}
2020-10-03 14:52:22 +05:00
}