-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.52 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
105
106
107
{
"name": "react-native-template",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"run-android": "react-native run-android",
"run-ios": "react-native run-ios",
"test": "jest",
"images": "node scripts/images.ts",
"fonts": "node scripts/fonts.ts",
"link-pkgs": "react-native link",
"rename": "react-native-rename",
"format": "npm-run-all format:*",
"format:js": "prettier --write {.,**}/*.js",
"format:json": "prettier --write {.,**}/*.json",
"format:md": "prettier --write {.,**}/*.md",
"format:ts": "prettier --write {.,**}/*.{ts,tsx}",
"check-format": "npx prettier -c \"**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "npx eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"android-gems": "cd android && bundle install && cd ..",
"ios-gems": "cd ios && bundle install && cd ..",
"pods": "cd ios && bundle exec pod install",
"android-bundle": "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/",
"ios-bundle": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios/main.jsbundle --assets-dest ios",
"android-beta": "cd android && fastlane beta && cd ..",
"ios-beta": "cd ios && fastlane beta && cd .."
},
"dependencies": {
"@react-native-community/async-storage": "1.12.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "5.8.8",
"@react-navigation/stack": "5.12.5",
"@reduxjs/toolkit": "1.4.0",
"apisauce": "2.0.0",
"lodash": "4.17.20",
"moment": "2.29.1",
"react": "17.0.1",
"react-native": "0.63.0",
"react-native-config": "1.4.1",
"react-native-gesture-handler": "1.8.0",
"react-native-responsive-screen": "1.4.1",
"react-native-safe-area-context": "3.1.8",
"react-native-screens": "2.13.0",
"react-redux": "7.2.2",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/runtime": "7.6.2",
"@react-native-community/eslint-config": "0.0.7",
"@types/lodash": "4.14.149",
"@types/react": "16.8.10",
"@types/react-native": "0.57.42",
"@types/react-redux": "7.0.6",
"@types/redux-logger": "3.0.7",
"@types/redux-persist": "4.3.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"eslint": "6.7.0",
"eslint-config-prettier": "4.1.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.2.3",
"jest": "24.8.0",
"lint-staged": "10.0.7",
"metro-react-native-babel-preset": "0.56.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.0",
"react-native-typescript-transformer": "1.2.12",
"react-test-renderer": "16.9.0",
"reactotron-react-native": "3.2.1",
"reactotron-redux": "3.1.0",
"reactotron-redux-saga": "4.2.1",
"typescript": "3.8.3"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"npx eslint --fix"
],
"*.md": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}