-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.5 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
{
"name": "animatedbook",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"ios:build": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --assets-dest 'ios' --dev=false --platform='ios'",
"android:build": "cd android && ./gradlew app:assembleRelease",
"pods": "cd ios && pod install && cd ..",
"ts:check": "tsc --watch",
"ts:check:ci": "tsc",
"android:clean": "cd android && ./gradlew clean && cd ..",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && yarn cache clean --force && yarn install && yarn start --reset-cache"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"lodash": "^4.17.21",
"react": "17.0.2",
"react-native": "0.66.3",
"react-native-bootsplash": "^3.2.5",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.3.0-beta.3",
"react-native-redash": "^16.0.11",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.4.0",
"react-native-svg": "^12.1.1",
"styled-components": "^5.3.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/react-native": "^0.64.5",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^5.1.10",
"@types/styled-components-react-native": "^5.1.1",
"@types/styled-system": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}