-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "convention-app",
"version": "1.2.0",
"private": true,
"description": "Trends, developments and current news from the MICE industry. Everything around meetings, incentives, congresses and events.",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "expo start --android",
"build:android": "expo build:android -t app-bundle",
"build:ios": "expo build:ios -t archive",
"commit": "git-cz",
"dev": "expo start",
"eject": "expo eject",
"ios": "expo start --ios",
"lint": "yarn run eslint '**/*.{js,ts,tsx}' --quiet --fix",
"semantic-release": "semantic-release",
"start": "expo start",
"test": "jest --detectOpenHandles --forceExit",
"test:cov": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest -u --watch --detectOpenHandles --forceExit",
"upload:android": "expo upload:android --latest",
"upload:ios": "expo upload:ios --latest --language German",
"web": "expo start --web"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"yarn lint",
"yarn test --passWithNoTests --detectOpenHandles --forceExit"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "./config/.prettierrc.json",
"eslintConfig": {
"extends": "./config/.eslintrc.json"
},
"dependencies": {
"@expo-google-fonts/open-sans": "^0.1.0",
"@expo-google-fonts/vollkorn": "^0.1.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"expo": "^40.0.0",
"expo-app-loading": "^1.0.1",
"expo-font": "~8.4.0",
"expo-status-bar": "~1.0.3",
"moment": "^2.29.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "~1.13.3",
"react-native-render-html": "^4.2.5",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "12.1.0",
"react-native-web": "~0.13.18",
"react-native-webview": "11.0.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "~7.13.16",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.23",
"@types/react": "~16.9.56",
"@types/react-dom": "~16.9.12",
"@types/react-native": "~0.63.52",
"@types/react-native-snap-carousel": "^3.8.2",
"@types/react-test-renderer": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^4.3.8",
"jest-expo": "^40.0.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"semantic-release": "^17.4.2",
"typescript": "~4.0.7"
},
"publishConfig": {
"access": "restricted"
},
"release": {
"extends": "./config/.releaserc.json"
}
}