-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 839 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 839 Bytes
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
{
"name": "helloreactnative",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"lint": "eslint .",
"prettier": "prettier --write '**/*.@(js|ts|tsx|json|css|md|mdx)'",
"clean-all": "./clean-all.sh"
},
"dependencies": {
"launchdarkly-react-native-client-sdk": "^8.0.0",
"react": "^18.2.0",
"react-native": "^0.72.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@react-native-community/eslint-config": "^3.2.0",
"eslint": "^8.35.0",
"eslint-plugin-prettier": "^4.2.1",
"metro-react-native-babel-preset": "^0.76.0",
"prettier": "^2.8.4",
"react-test-renderer": "18.2.0"
},
"jest": {
"preset": "react-native"
}
}