-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.27 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
{
"name": "react-native--expert-boilerplate",
"description": "It comes with most important rn packages for developing apps.\nIt's based on Expo v35, react-navigation, jest (unit test - TDD), redux (global state manager), redux-form; InteractionManager, react-devtools, React.memo() and other performance hints for 60fps animations in between JS Thread and UI Thread, etc.",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"test:watch": "npm test -- --watch",
"eslint:fix": "npx eslint --fix .",
"react-devtools": "react-devtools"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"expo": "^35.0.0",
"expo-font": "~7.0.0",
"expo-haptics": "~7.0.0",
"moment": "^2.24.0",
"nanoid": "^2.1.6",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-appearance": "~0.1.0",
"react-native-gesture-handler": "~1.3.0",
"react-native-reanimated": "~1.2.0",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.10.3",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-middleware-injector": "^1.0.3",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"victory-native": "^33.0.0"
},
"devDependencies": {
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"babel-preset-expo": "^7.1.0",
"eslint": "^6.6.0",
"eslint-config-standard-with-typescript": "^10.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"react-devtools": "3",
"typescript": "^3.6.3"
},
"private": true,
"author": {
"name": "Alexandre Lage",
"url": "https://nosso.studio"
}
}