-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "triviaApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --watch"
},
"dependencies": {
"axios": "^0.19.0",
"html-entities": "^1.2.1",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-progress-bar-animated": "^1.0.6",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "3.3.2",
"react-redux": "7.1.0",
"redux": "4.0.4",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "^1.18.2",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.8.3",
"redux-mock-store": "^1.5.3"
},
"jest": {
"preset": "react-native",
"moduleNameMapper": {
"styled-components": "<rootDir>/node_modules/styled-components/native/dist/styled-components.native.cjs.js"
},
"setupFilesAfterEnv": [
"./__mock__/axios.js"
]
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}