forked from shabados/mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3 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": "@shabados/mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --color",
"test:types": "tsc --pretty",
"test:unit": "jest --color",
"test": "run-p -l test:*",
"emulator:android": "react-native run-android",
"emulator:ios": "react-native run-ios --simulator='iPhone 8'",
"start:android": "run-p -l emulator:android \"test:* -- --watch\"",
"start:ios": "run-p -l emulator:ios \"test:* -- --watch\"",
"clean:ios": "cd ios && rimraf Pods && xcodebuild clean",
"clean:android": "run-script-os",
"clean:android:default": "cd android && ./gradlew clean",
"clean:android:windows": "cd android && gradlew clean",
"start": "react-native start",
"install-assets": "react-native link",
"postinstall": "pod-install ios"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/toolbar-android": "0.1.0-rc.2",
"@react-navigation/material-bottom-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"fbjs": "^2.0.0",
"gurmukhi-utils": "^3.2.0",
"i18next": "^19.7.0",
"lodash": "^4.17.20",
"react": "16.13.1",
"react-i18next": "^11.7.3",
"react-native": "0.63.2",
"react-native-gesture-handler": "^1.8.0",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.10.1",
"react-native-vector-icons": "^7.1.0",
"react-query": "^3.5.11"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.10.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.13",
"@types/jest-when": "^2.7.2",
"@types/lodash": "^4.14.161",
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.18",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-native": "^3.9.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"faker": "^5.1.0",
"fishery": "^1.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-transform-stub": "^2.0.0",
"jest-when": "^3.1.0",
"jetifier": "^1.6.6",
"metro-react-native-babel-preset": "^0.63.0",
"npm-run-all": "^4.1.5",
"pod-install": "^0.1.10",
"prettier": "2.1.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}