-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 4.32 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@lad-tech/mobydick",
"version": "7.34.2",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"postinstall": "npx patch-package",
"postversion": "./scripts/semantic-release.ts",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"test:ci": "jest --ci --coverage=true --silent",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tsc -p tsconfig.json --noEmit",
"lint:ci": "eslint . --quiet && tsc -p tsconfig.json --noEmit",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle",
"bundleWithAssets": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
"android:clean": "cd android && ./gradlew clean",
"android:build:debug": "cd android && ./gradlew :app:assembleDebug",
"android:build:release": "cd android && ./gradlew :app:assembleRelease",
"android:get:aab": "cd android && ./gradlew :app:bundleRelease",
"android:get:debug": "yarn bundleWithAssets && yarn android:build:debug",
"android:get:release": "yarn bundle && yarn android:build:release",
"release": "semantic-release",
"e2e:ios:debug:build": "detox build --configuration ios.sim.debug",
"e2e:ios:debug:test": "detox test --configuration ios.sim.debug",
"e2e:ios:debug": "yarn e2e:ios:debug:build && yarn e2e:ios:debug:test",
"e2e:android:build": "yarn bundle && detox build --configuration android.emu.release",
"e2e:android:test": "detox test --configuration android.emu.release",
"e2e:android": "yarn e2e:android:build && yarn e2e:android:test",
"e2e:android:debug:build": "yarn bundleWithAssets && detox build --configuration android.emu.debug",
"e2e:android:debug:test": "detox test --configuration android.emu.debug",
"e2e:android:debug": "yarn e2e:android:debug:build && yarn e2e:android:debug:test",
"storybook-generate": "sb-rn-get-stories",
"storybook-watch": "sb-rn-watcher",
"start-server": "react-native-storybook-server"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@react-navigation/bottom-tabs": "^6.5.18",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@shopify/react-native-skia": "^1.0.4",
"react": "18.2.0",
"react-native": "0.73.7",
"react-native-calendars": "^1.1294.0",
"react-native-gesture-handler": "^2.14.1",
"react-native-markdown-display": "^7.0.2",
"react-native-reanimated": "^3.8.1",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-native-svg": "^15.3.0",
"react-native-svg-transformer": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@lad-tech/eslint-config": "^0.0.16",
"@react-native-async-storage/async-storage": "^1.19.1",
"@react-native/babel-preset": "0.73.21",
"@react-native/metro-config": "0.73.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.1.0",
"@types/detox": "^18.1.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.6",
"@types/react-native": "^0.67.3",
"@types/react-test-renderer": "^18.0.0",
"@types/xdate": "^0.8.32",
"@types/yargs": "^17.0.10",
"babel-jest": "^29.6.3",
"babel-loader": "^8.2.4",
"babel-plugin-module-resolver": "^5.0.0",
"detox": "^20.5.0",
"eslint": "^8.56.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.2.4",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0",
"semantic-release": "^23.0.0",
"simple-git": "^3.10.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"winston": "^3.8.1"
},
"engines": {
"node": ">=18"
}
}