forked from wednesday-solutions/react-native-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 4.8 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --detectOpenHandles --coverage --config=jest.config.js",
"test:staged": "jest --findRelatedTests --config=jest.config.js",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"rename": "react-native-rename",
"postinstall": "npx jetify",
"precommit": "lint-staged",
"prettify": "prettier --write",
"initialize": "git checkout --orphan temp-branch && git add -A && git commit -m 'Initial commit' && git branch -D master && git branch -m master",
"build-android": "cd android && ./gradlew assembleRelease"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force",
"jest --findRelatedTests $STAGED_FILES"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"dependencies": {
"@babel/polyfill": "7.4.3",
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/compat": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"apisauce": "^1.1.1",
"axios-mock-adapter": "^1.17.0",
"babel-plugin-react-intl": "3.0.1",
"babel-preset-react-native": "^4.0.1",
"expo": "^41.0.0",
"expo-status-bar": "~1.0.4",
"global": "^4.4.0",
"immer": "^4.0.0",
"immutable": "^4.0.0-rc.12",
"intl": "1.2.5",
"lodash": "^4.17.15",
"map-keys-deep": "^0.0.2",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-intl": "2.8.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.4.0",
"react-native-web": "~0.13.12",
"react-redux": "^6.0.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.1",
"redux-persist": "^6.0.0",
"redux-persist-transform-immutable": "^5.0.0",
"redux-saga": "^1.0.2",
"reduxsauce": "^1.0.1",
"reselect": "^4.0.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "~7.9.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.3",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"@testing-library/react-native": "^7.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-react-intl": "3.0.1",
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-preset-expo": "8.3.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"eslint-plugin-redux-saga": "^1.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.8",
"jest": "^24.5.0",
"pre-commit": "1.2.2",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"prettier-standard": "^15.0.1",
"pretty-quick": "^1.11.1",
"react-dom": "^16.10.2",
"react-native-rename": "^2.4.1",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"setupFilesAfterEnv": [
"./setupTests.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!react-native)/.+"
]
},
"private": true
}