-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
{
"name": "fitness",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug",
"dep": "cd ./android && ./gradlew app:dependencies",
"build": "cd ./android && ./gradlew app:assembleRelease && ./gradlew installRelease",
"clean": "react-native-clean-project",
"tsc": "tsc"
},
"dependencies": {
"@nozbe/watermelondb": "^0.14.1",
"@nozbe/with-observables": "^1.0.2",
"@react-native-community/async-storage": "^1.2.1",
"dayjs": "^1.8.11",
"es6-symbol": "^3.1.1",
"formik": "^1.5.0",
"react": "^16.8.4",
"react-native": "^0.60.5",
"react-native-calendars": "^1.212.0",
"react-native-elements": "^1.0.0",
"react-native-navigation": "^3.1.2",
"react-native-sectioned-multi-select": "^0.7.1",
"react-native-svg": "^9.2.4",
"react-native-vector-icons": "^6.2.0",
"recompose": "^0.30.0",
"tslib": "^1.9.3",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@types/jest": "^24.0.3",
"@types/react": "^16.8.8",
"@types/react-native": "^0.60.11",
"@types/react-native-calendars": "^1.20.7",
"@types/react-native-navigation": "^2.0.0",
"@types/react-native-vector-icons": "^6.4.0",
"@types/react-test-renderer": "^16.8.1",
"@types/recompose": "^0.30.5",
"@types/yup": "^0.26.9",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.3.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"jest": "^24.3.1",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.4",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
]
}
}