-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "rn_web_starter",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "webpack serve -d source-map --mode development --config \"./web/webpack.config.js\" --color --hot",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "^0.70.4",
"react-native-web": "^0.18.10",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.2.0",
"babel-jest": "^29.2.2",
"babel-loader": "^9.1.0",
"babel-plugin-react-native-web": "^0.18.10",
"clean-terminal-webpack-plugin": "^3.0.0",
"eslint": "^8.26.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.2",
"metro-react-native-babel-preset": "^0.73.3",
"prettier": "^2.7.1",
"react-test-renderer": "18.1.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"preset": "react-native"
}
}