-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.37 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
{
"name": "react-native-typescript-template",
"version": "0.0.1",
"private": false,
"description": "Boilerplate template for react native using typescript, redux, redux-saga and more",
"author": "Felix Costa <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:ios": "open ./ios/*.xcworkspace && yarn start",
"open:ios": "open ./ios/*.xcworkspace",
"open:android": "open -a '/Applications/Android Studio.app'",
"start:android": "open -a '/Applications/Android Studio.app' ./android && yarn start",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"test": "jest --verbose --coverage",
"test:update": "jest --verbođse --coverage --updateSnapshot",
"test:watch": "jest --verbose --watch",
"coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html",
"codecov": "jest --verbose --coverage && ./node_modules/.bin/codecov --token=176f4867-f830-40ec-a536-90e7b611d713",
"rename": "react-native-rename",
"jetify": "npx jetify",
"icon": "npx app-icon generate -i publishing/icon.png",
"setup": "./bin/install.sh $1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn codecov"
}
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/masked-view": "^0.1.9",
"@react-navigation/bottom-tabs": "^5.2.6",
"@react-navigation/native": "^5.1.5",
"@types/react-redux": "^7.1.7",
"autobind-decorator": "^2.4.0",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-easy-icon": "^1.0.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-localization": "^2.1.6",
"react-native-normalize": "^1.0.1",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.5.0",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.2.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@react-native-community/eslint-config": "^1.0.0",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.2",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"app-icon": "^0.13.2",
"babel-jest": "^25.3.0",
"babel-plugin-root-import": "^6.5.0",
"codecov": "^3.6.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.4",
"react-dom": "^16.13.1",
"react-native-rename": "^2.4.1",
"react-native-testing-library": "^1.13.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.11.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}