-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
105 lines (105 loc) · 2.77 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
{
"name": "githubexplorer",
"version": "0.1.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"detox:debug": "detox test -c android.emu.debug",
"detox:release": "detox test -c android.emu.release",
"release": "release-it"
},
"dependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"@release-it/conventional-changelog": "^7.0.2",
"axios": "^0.21.1",
"husky": "^8.0.3",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-normalize": "^1.0.1",
"react-native-reanimated": "^2.0.1",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^2.18.1",
"release-it": "^16.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/faker": "^5.1.7",
"@types/jest": "^26.0.20",
"@types/react-native": "^0.64.0",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "^18.10.0",
"eslint": "^7.14.0",
"faker": "^5.5.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-localstorage-mock": "^2.4.8",
"metro-react-native-babel-preset": "^0.64.0",
"mock-async-storage": "^2.2.0",
"react-native-vector-icons": "^8.1.0",
"react-test-renderer": "17.0.1",
"ts-jest": "^26.5.4",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
}
]
}
}
}
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}