-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --variant devDebug",
"run:android:dev": "react-native run-android --variant devDebug",
"run:android:qa": "react-native run-android --variant qaDebug",
"run:android:prod": "react-native run-android --variant prodDebug",
"build:android:qa:release": "cd android && ./gradlew assembleQaRelease",
"build:android:prod:release": "cd android && ./gradlew assembleProdRelease",
"run:ios:dev": "react-native run-ios --scheme mobile --configuration dev.Debug",
"run:ios:qa": "react-native run-ios --scheme mobile --configuration qa.Debug",
"run:ios:prod": "react-native run-ios --scheme mobile --configuration prod.Debug",
"build:ios:qa:release": "cd ios && xcodebuild -scheme mobile build -configuration qa.Release",
"build:ios:prod:release": "cd ios && xcodebuild -scheme mobile build -configuration prod.Release",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.20.13",
"@jest/globals": "^29.4.2",
"@nozbe/watermelondb": "^0.25.5",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.9.7",
"babel-plugin-parameter-decorator": "^1.0.16",
"foundation": "^0.0.1",
"jest": "^29.4.2",
"localisation": "^0.0.1",
"lodash": "^4.17.21",
"presentation": "^0.0.1",
"react": "18.1.0",
"react-native": "^0.70.6",
"react-native-linear-gradient": "^2.6.2",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-splash-screen": "^3.3.0",
"react-obsidian": "^0.0.41",
"react-redux": "^8.0.5",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/runtime": "^7.20.13",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^29.4.2",
"eslint": "^8.31.0",
"jest": "^29.4.2",
"metro-react-native-babel-preset": "0.75.0",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.3"
},
"babel": {
"presets": [
"module:metro-react-native-babel-preset"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}