-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 3.05 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
{
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest --all --no-watchman",
"coverage": "rm -rf coverage/ node_modules/.cache/ && NODE_ENV=test npx jest --collect-coverage",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"watch-need-help": "echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances && echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events && echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches && watchman shutdown-server && watchman watch-del-all"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npx eslint . --fix",
"git add"
],
"src/*.{js,jsx}": [
"npx eslint . --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@expo/vector-icons": "^12.0.2",
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.9.1",
"@react-navigation/stack": "^5.9.3",
"apisauce": "^1.1.2",
"babel-plugin-inline-dotenv": "^1.6.0",
"expo": "~39.0.2",
"expo-camera": "^9.0.0",
"expo-cli": "^3.27.12",
"expo-constants": "^9.2.0",
"expo-splash-screen": "~0.6.0",
"expo-status-bar": "~1.0.2",
"expo-updates": "~0.3.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "~0.63.2",
"react-native-gesture-handler": "~1.7.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-unimodules": "^0.11.0",
"react-native-web": "~0.13.12",
"react-navigation": "^4.4.3",
"react-navigation-stack": "^2.10.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "~25.2.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-env": "^1.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-module-utils": "^2.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-scope": "^5.1.1",
"eslint-utils": "^2.1.0",
"eslint-visitor-keys": "^2.0.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-environment-enzyme": "^7.1.2",
"jest-environment-node": "^26.6.1",
"jest-enzyme": "^7.1.2",
"jest-expo": "^39.0.0",
"jest-expo-enzyme": "^1.0.4",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1"
},
"private": true
}