-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "BookSeeker",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.2.0",
"@types/prop-types": "^15.5.3",
"babel-eslint": "^8.2.2",
"babel-preset-expo": "^6.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.67.1",
"jest-expo": "^34.0.0",
"react-dom": "16.8.3"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "echo test",
"appr": "appr",
"test:watch": "npm test -- --watch"
},
"jest": {
"preset": "jest-expo",
"automock": false,
"setupFiles": [
"./src/setupTests.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@expo/vector-icons": "^10.0.0",
"@types/jest": "^23.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"expo": "^34.0.0",
"install": "^0.10.4",
"jest-fetch-mock": "^1.6.5",
"npm": "^6.7.0",
"prop-types": "^15.6.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.2.tar.gz",
"react-native-elements": "^1.0.0-beta5",
"react-native-fetch": "^1.0.0",
"react-native-modal-datetime-picker": "^4.13.0",
"react-native-navigation": "^1.1.384",
"react-native-pull-to-refresh": "^2.1.3",
"react-navigation": "^1.1.2",
"react-redux": "^5.1.1",
"react-test-renderer": "16.2.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"react-native-dotenv": "^0.2.0",
"expo-barcode-scanner": "~6.0.0",
"expo-image-picker": "~6.0.0",
"expo-permissions": "~6.0.0"
}
}