-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.98 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
{
"name": "AwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"test:watch": "jest --watch",
"update:snapshot": "jest --updateSnapshot",
"lint": "./node_modules/.bin/eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "./node_modules/.bin/eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"new:clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean --force && yarn",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force && yarn",
"android:clean": "cd android/ && ./gradlew clean && cd ..",
"pod:install": "cd ios && pod install --verbose && cd ..",
"pod:install:clean": "cd ios && rm -rf Podfile.lock && pod install --repo-update --verbose && cd ..",
"xcode": "open ios/AwesomeProject.xcworkspace",
"studio": "open -a /Applications/Android\\ Studio.app ./android/"
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.3",
"color": "^3.1.2",
"fbemitter": "^2.1.1",
"lodash": "^4.17.19",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-fast-image": "^7.0.2",
"react-native-fs": "^2.14.1",
"react-native-gesture-handler": "^1.5.0",
"react-native-parsed-text": "^0.0.21",
"react-native-progress": "^4.0.3",
"react-native-screens": "1.0.0-alpha.23",
"react-native-snap-carousel": "^3.8.4",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-hooks": "^1.1.0",
"react-navigation-stack": "^1.10.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"@callstack/eslint-config": "^8.0.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/color": "^3.0.0",
"@types/fbemitter": "^2.0.32",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.138",
"@types/react-native": "^0.60.25",
"@types/react-native-snap-carousel": "^3.7.4",
"@types/react-navigation": "^3.0.8",
"@types/react-test-renderer": "16.9.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-react-native": "^3.7.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-testing-library": "^1.12.0",
"react-test-renderer": "16.9.0",
"typescript": "^3.7.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}