Files

59 lines
1.5 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-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",
2023-11-30 15:02:37 +05:00
"framer-motion": "^10.16.8",
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",
"tinycolor2": "1.6.0",
2023-11-30 15:02:37 +05:00
"zustand": "^4.4.7"
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",
"env-cmd": "^10.1.0",
2023-11-30 15:02:37 +05:00
"react-scripts": "^5.0.1"
2022-06-23 19:14:55 +05:00
},
"scripts": {
2023-02-23 11:02:10 +05:00
"start": "env-cmd -e all react-scripts start",
2024-05-07 11:49:58 +05:00
"build": "env-cmd -e all react-scripts build && rm -rf build.bundle && rm -rf sourcemaps && mv build build.bundle && cp -r ./build.bundle/static/js/ sourcemaps && rm -r ./build.bundle/static/js/*.map",
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
}
}