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

63 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",
2023-02-23 11:02:10 +05:00
"framer-motion": "^6.5.1",
"mdi-react": "9.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"zustand": "^3.6.8"
2022-06-23 19:14:55 +05:00
},
"devDependencies": {
"@playwright/test": "^1.37.1",
2022-06-23 19:14:55 +05:00
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/ip": "^1.1.0",
2022-06-23 19:14:55 +05:00
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"env-cmd": "^10.1.0",
"ip": "^1.1.8",
2022-06-23 19:14:55 +05:00
"react-error-overlay": "6.0.9",
2023-02-23 11:02:10 +05:00
"react-scripts": "^5.0.1",
"web-vitals": "^1.1.2"
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",
"build": "env-cmd -e all react-scripts build && rm -rf build.bundle && mv build build.bundle",
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
}
}