-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 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
{
"name": "EasySwot",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"buildInstallRelease": "react-native run-android --variant=release",
"test": "jest",
"tslint": "tslint --project tsconfig.json",
"amplify-modelgen": "node amplify/scripts/amplify-modelgen.js",
"amplify-push": "node amplify/scripts/amplify-push.js"
},
"dependencies": {
"@aws-amplify/core": "^2.2.0",
"@aws-amplify/datastore": "^1.0.2",
"@eva-design/eva": "^1.3.0",
"@react-native-community/async-storage": "^1.6.3",
"@react-native-community/masked-view": "^0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.21",
"@react-navigation/core": "^5.0.0-alpha.22",
"@react-navigation/native": "^5.0.0-alpha.15",
"@react-navigation/stack": "^5.0.0-alpha.36",
"@ui-kitten/components": "^4.3.1",
"@ui-kitten/eva-icons": "^4.3.1",
"react": "16.9.0",
"react-hook-form": "^3.28.14",
"react-native": "0.61.5",
"react-native-gesture-handler": "^1.5.0",
"react-native-permissions": "^2.0.3",
"react-native-platform-touchable": "^1.1.1",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "^0.6.0",
"react-native-safe-area-view": "^1.0.0",
"react-native-screens": "^2.0.0-alpha.11",
"react-native-svg": "^9.13.3",
"react-native-vector-icons": "^6.6.0",
"react-navigation-header-buttons": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.20",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/react-test-renderer": "16.9.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"ini": "^1.3.5",
"inquirer": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"typescript": "^3.6.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"tslint --project tsconfig.json",
"git add"
]
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}