Files
notesnook/packages/editor-mobile/package.json

62 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2022-06-23 19:14:55 +05:00
{
"name": "@notesnook/editor-mobile",
2022-07-09 23:45:10 +05:00
"version": "1.0.0",
2022-06-23 19:14:55 +05:00
"private": true,
"dependencies": {
"@emotion/react": "11.11.1",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.0",
2023-07-06 09:09:10 +05:00
"@notesnook/editor": "file:../editor",
"@notesnook/theme": "file:../theme",
2024-08-15 15:39:53 +05:00
"@notesnook/intl": "file:../intl",
2024-01-04 11:38:40 +05:00
"@szhsin/react-menu": "^4.1.0",
2023-11-17 14:20:06 +05:00
"buffer": "^6.0.3",
2024-05-09 12:04:22 +05:00
"localforage": "^1.10.0",
2023-02-23 11:02:10 +05:00
"mdi-react": "9.1.0",
2023-11-30 15:02:37 +05:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-12-21 10:14:53 +05:00
"react-freeze": "^1.0.3",
2024-08-15 15:39:53 +05:00
"zustand": "^4.4.7",
2025-01-21 13:01:36 +05:00
"@lingui/core": "5.1.2",
2024-05-14 15:35:49 +05:00
"@lingui/react": "5.1.2",
"tinycolor2": "1.6.0",
"@notesnook/common": "file:../common"
2022-06-23 19:14:55 +05:00
},
"devDependencies": {
"@playwright/test": "^1.37.1",
2023-11-30 15:02:37 +05:00
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"react-scripts": "^5.0.1"
2022-06-23 19:14:55 +05:00
},
"scripts": {
"start": "cross-env DISABLE_ESLINT_PLUGIN=true GENERATE_SOURCEMAP=true BROWSER=none react-scripts start",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true GENERATE_SOURCEMAP=true BROWSER=none react-scripts build",
"postbuild": "node scripts/build.mjs",
2022-06-23 19:14:55 +05:00
"test": "react-scripts test",
2023-03-21 09:42:52 +05:00
"eject": "react-scripts eject",
"postinstall": "patch-package"
2022-06-23 19:14:55 +05:00
},
2022-07-04 16:14:26 +05:00
"homepage": ".",
2022-06-23 19:14:55 +05:00
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/build.bundle"
]
}
}
2022-06-23 19:14:55 +05:00
}
}