-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 KB
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": "boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/datetimepicker": "^3.5.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/drawer": "^5.0.6",
"@react-navigation/native": "^5.0.6",
"@react-navigation/native-stack": "^5.0.5",
"@react-navigation/stack": "^5.0.6",
"@types/react-native-actionsheet": "^2.4.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-actionsheet": "^2.4.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-modal-datetime-picker": "^10.2.0",
"react-native-modals": "^0.22.3",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.5.0",
"react-native-toast-notifications": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/runtime": "^7.14.8",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-native": "^0.64.12",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"metro-react-native-babel-preset": "^0.66.2",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "17.0.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}