-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 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
{
"name": "PokeFightClub",
"author": "Melih Berberoglu <[email protected]>",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"axios": "^0.17.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "0.50.3",
"react-native-shimmer": "^0.3.2",
"react-native-vector-icons": "^4.4.2",
"react-navigation": "^1.0.0-beta.19",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-persist": "^4.8.2",
"redux-persist-transform-filter": "0.0.16",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "4.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-react-native": "^18.0.0",
"jest-serializer-enzyme": "^1.0.0",
"prettier": "^1.8.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.3.0",
"redux-saga-test-plan": "^3.3.0",
"redux-saga-testing": "^1.0.5",
"sinon": "^4.1.2"
},
"jest": {
"preset": "jest-react-native",
"testPathIgnorePatterns": [
"./node_modules/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"moduleDirectories": [
"packages",
"node_modules"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "./setupTests.js",
"globals": {
"window": true
}
},
"rnpm": {
"assets": [
"./resources/fonts"
]
}
}