-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "react-native-babel-wla",
"version": "1.0.0",
"author": "Jaroslaw Marek",
"license": "WTFPL",
"private": true,
"funding": {
"type": "BuyMeACoffee",
"url": "https://www.buymeacoffee.com/jar0s"
},
"scripts": {
"android": ". scripts/load_env.sh && react-native run-android --appId $BUNDLE_ID",
"ios": ". scripts/load_env.sh && react-native run-ios",
"start": ". scripts/load_env.sh && react-native start --port $RCT_METRO_PORT",
"test": "jest",
"lint": "eslint .",
"configure-brand": "./scripts/configure_brand.sh android ios",
"configure-brand:android": "./scripts/configure_brand.sh android",
"configure-brand:ios": "./scripts/configure_brand.sh ios"
},
"dependencies": {
"@sentry/react-native": "^5.22.2",
"react": "18.2.0",
"react-native": "0.73.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-asset": "^2.1.1",
"react-test-renderer": "18.2.0",
"tsconfig.js": "^3.0.0",
"typescript": "^4.6.3"
},
"jest": {
"preset": "react-native"
},
"engines": {
"node": ">=18"
}
}