forked from Alastair2D/injection_dependent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"components/**/*.{js,jsx}",
"screens/*.{js,jsx}",
"redux/actions/*.js",
"redux/reducers/*.js",
"*.{js,jsx}",
"!setupTests.js",
"!App.js",
"!components/TabBarIcon.js"
],
"preset": "react-native",
"testEnvironment": "jsdom",
"setupFiles": [
"./setupTests.js"
],
"verbose": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "./node_modules/.bin/eslint components/*.js App.js screens/*.js"
},
"dependencies": {
"@expo/samples": "2.1.1",
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"expo": "^30.0.1",
"expo-cli": "^2.2.0",
"moment": "^2.22.2",
"react": "16.3.1",
"react-dom": "^16.5.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"react-native-elements": "^0.19.1",
"react-native-modal": "^6.5.0",
"react-native-popup-menu": "^0.14.0",
"react-native-switch": "^1.5.0",
"react-native-switch-toggle": "^1.0.6",
"react-native-table-component": "^1.1.8",
"react-navigation": "^2.16.0",
"react-redux": "^5.0.7",
"react-test-renderer": "^16.5.2",
"redux": "^4.0.1",
"toggle-switch-react-native": "^2.0.2"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"enzyme-redux": "^0.2.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"react-native-mock": "^0.3.1",
"react-native-mock-render": "^0.1.2",
"react-native-swipe-gestures": "^1.0.2",
"react-test-renderer": "^16.5.2",
"redux-test-utils": "^0.3.0",
"timekeeper": "^2.1.2"
}
}