-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "Quizy",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "standard --verbose | snazzy",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"fixcode": "standard --fix",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html"
},
"dependencies": {
"apisauce": "^0.14.3",
"entities": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"react": "16.3.1",
"react-native": "0.55.2",
"react-native-elements": "^0.19.1",
"react-native-i18n": "^2.0.12",
"react-native-snap-carousel": "^3.6.0",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^1.5.11",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.1",
"redux-persist": "^5.9.1",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"mockery": "^2.1.0",
"moxios": "^0.4.0",
"react-dom": "^16.3.1",
"react-test-renderer": "^16.3.1",
"sinon": "^4.5.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"./test/jestSetup.js"
],
"setupFiles": [
"./test/jestSetup.js"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"preset": "react-native"
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"globals": [
"describe",
"test",
"jest",
"expect",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData",
"React$Element"
]
}
}