-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "flashcards",
"version": "0.1.0",
"private": true,
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest-expo": "30.0.0",
"react-test-renderer": "16.3.1",
"redux-mock-store": "^1.5.3",
"remote-redux-devtools": "^0.5.12"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo android",
"ios": "expo ios",
"test": "jest",
"test-with-coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage"
},
"jest": {
"preset": "jest-expo",
"setupTestFrameworkScriptFile": "<rootDir>/app/config/setupTest.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"codacy-coverage": "^3.0.0",
"expo": "^30.0.1",
"formik": "^1.0.2",
"lodash": "^4.17.10",
"pluralize": "^7.0.0",
"prop-types": "^15.6.2",
"react": "16.3.1",
"react-dom": "^16.4.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"react-native-paper": "^2.1.1",
"react-native-scripts": "2.0.1",
"react-navigation": "^2.12.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^3.3.3",
"yup": "^0.26.0"
}
}