This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "@freakycoder/react-native-redux-boilerplate",
"version": "0.2.0",
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"description": "React Native Redux Boilerplate",
"keywords": [
"boilerplate",
"redux",
"library",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-redux-boilerplate/issues",
"main": "./lib/src/index.js",
"repository": "git@github.com:WrathChaos/react-native-redux-boilerplate.git",
"author": "Kuray (FreakyCoder) <kurayogun@gmail.com>",
"license": "MIT",
"dependencies": {
"@freakycoder/react-native-helpers": "1.0.2",
"@react-native-community/async-storage": "^1.6.3",
"axios": "^0.27.1",
"react": "16.14.0",
"react-native": "0.68.2",
"react-native-gesture-handler": "^1.5.1",
"react-native-reanimated": "^2.2.0",
"react-native-screens": "^3.0.0",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.3.3",
"react-navigation-helpers": "0.1.0",
"react-navigation-stack": "^2.8.2",
"react-navigation-tabs": "^2.6.0",
"react-redux": "^8.0.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@react-native-community/eslint-config": "^3.0.0",
"babel-jest": "^28.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^8.0.0",
"jest": "^28.0.3",
"metro-react-native-babel-preset": "^0.70.0",
"react-test-renderer": "16.14.0"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assets/fonts"
]
}
}