-
-
Notifications
You must be signed in to change notification settings - Fork 650
/
package.json
59 lines (59 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@notesnook/editor-mobile",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "11.11.1",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.0",
"@notesnook/editor": "file:../editor",
"@notesnook/theme": "file:../theme",
"@notesnook/intl": "file:../intl",
"@szhsin/react-menu": "^4.1.0",
"buffer": "^6.0.3",
"localforage": "^1.10.0",
"mdi-react": "9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-freeze": "^1.0.3",
"zustand": "^4.4.7",
"@lingui/core": "4.11.4",
"@lingui/react": "4.11.4"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"react-scripts": "^5.0.1"
},
"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",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "patch-package"
},
"homepage": ".",
"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"
]
}
}
}
}