-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.88 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.88 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
83
84
85
86
87
88
89
90
91
92
{
"name": "Boilerplate",
"version": "0.4.0",
"private": true,
"author": "fei",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest && eslint ./src",
"postinstall": "rndebugger-open",
"lint": "eslint --ext .js ./src --fix",
"precommit": "lint-staged",
"generate": "plop --plopfile ./generators/index.js",
"storybook": "storybook start -p 7007",
"prestorybook": "rnstl"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src",
"./storybook"
],
"pattern": "**/**.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"hoist-non-react-statics": "^2.5.5",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"jest-cli": "^23.2.0",
"lodash": "^4.17.10",
"native-base": "^2.8.1",
"plop": "^2.0.0",
"prop-types": "^15.6.2",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-i18n": "^2.0.12",
"react-native-router-flux": "^4.0.0-beta.31",
"react-native-splash-screen": "3.0.9",
"react-native-vector-icons": "^4.6.0",
"react-redux": "^5.0.7",
"react-router-native": "^4.3.0",
"redux": "^4.0.0-rc.1",
"redux-form": "^7.4.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"reselect-immutable-helpers": "^1.2.2"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react-native": "^3.4.8",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "4.0.0",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"husky": "^0.14.3",
"jest": "^23.4.0",
"lint-staged": "^7.2.0",
"react-dom": "16.3.1",
"react-native-debugger-open": "^0.3.17",
"react-native-storybook-loader": "^1.8.0",
"react-test-renderer": "^16.4.1",
"redux-devtools-extension": "^2.13.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|native-base-shoutem-theme|react-native-easy-grid|react-native-drawer|react-native-vector-icons|react-native-keyboard-aware-scroll-view|react-native-swiper|react-navigation|native-base|react-native-router-flux|react-native-splash-screen|react-native-iphone-x-helper|react-native-safe-area-view)/)"
]
}
}