This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.01 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
{
"name": "reactnativemonaco",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --no-packager",
"ios": "react-native run-ios --no-packager",
"start": "react-native webpack-start",
"start:editor": "cd editor && webpack-cli -c webpack.config.js --mode development --watch",
"bundle:editor": "cd editor && webpack-cli -c webpack.config.js --mode production",
"bundle:ios": "react-native webpack-bundle --platform ios --dev false --entry-file index.js --bundle-output ./bundle.js",
"bundle:android": "react-native webpack-bundle --platform android --dev false --entry-file index.js --bundle-output ./bundle.js",
"lint": "eslint . -c .eslintrc.js --ext .js,.jsx,.ts,.tsx",
"format": "eslint . -c .eslintrc.js --fix --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"react": "17.0.2",
"react-native": "0.67.3",
"react-native-fs": "^2.19.0",
"react-native-webview": "^11.17.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.12.5",
"@callstack/repack": "^2.5.2",
"@codemirror/lang-javascript": "^0.19.7",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react-native": "^0.66.15",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@uiw/react-codemirror": "^4.5.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.7.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"metro-react-native-babel-preset": "^0.66.2",
"react-dev-utils": "^12.0.0",
"react-dom": "^17.0.2",
"react-test-renderer": "17.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.4.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"resolutions": {
"@types/react": "^17"
}
}