-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.11 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
{
"name": "starterApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "npm run test:lint && npm run test:flow && npm run test:unit",
"test:unit": "jest",
"test:lint": "eslint . --quiet",
"test:flow": "flow",
"test:flow:start": "flow start",
"test:flow:check": "flow check",
"prettify": "prettier --write --trailing-comma es5 --single-quote --print-width 100 src/**/*.js"
},
"dependencies": {
"normalizr": "^3.2.2",
"ramda": "^0.24.1",
"react": "16.0.0-alpha.12",
"react-native": "0.46.4",
"react-native-animatable": "^1.2.0",
"react-native-i18n": "^1.0.0",
"react-native-image-header-scroll-view": "^0.5.1",
"react-native-root-toast": "^1.1.2",
"react-native-vector-icons": "^4.1.1",
"react-navigation": "^1.0.0-beta.12",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-enhancer-react-native-appstate": "^0.2.0",
"redux-mock-store": "^1.2.3",
"redux-offline": "^2.0.0",
"redux-saga": "^0.15.3",
"redux-saga-test-plan": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "19.0.0",
"babel-preset-react-native": "^1.9.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^6.10.0",
"flow-bin": "0.47.0",
"jest": "^20.0.4",
"prettier": "^1.5.3",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|static-container|redux-enhancer-react-native-appstate)"
],
"moduleNameMapper": {
"^[./a-zA-Z0-9$_-]+\\.(jpg|png|gif|eot|svg|ttf|woff|woff2|mp4|webm)$": "<rootDir>/jest/FileStub.js"
}
}
}