-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.05 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.05 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
{
"name": "react-native-starter-kit",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --no-packager",
"ios": "react-native run-ios --no-packager",
"start": "react-native start",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"lint": "eslint ./src/**/*.{ts,tsx}",
"ci": "yarn tsc && yarn lint && yarn format",
"bundle": "BUNDLE_GEMFILE=ios/Gemfile bundle install",
"pods": "cd ios && BUNDLE_GEMFILE=Gemfile bundle exec pod install",
"clean-project": "./scripts/clean.sh",
"postinstall": "react-native-inhibit-warnings && rndebugger-open"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-dotenv": "^2.5.1",
"react-native-gesture-handler": "^1.9.0",
"react-native-reanimated": "^1.13.2",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.17.1",
"react-native-svg": "^12.1.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"remote-redux-devtools": "^0.5.16"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/axios": "^0.14.0",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.46",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"metro-react-native-babel-preset": "^0.65.0",
"prettier": "^2.2.1",
"react-native-debugger-open": "^0.3.25",
"react-native-inhibit-warnings": "^1.0.1",
"ts-prune": "^0.8.8",
"typescript": "^4.1.3"
}
}