forked from PrototypeInteractive/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "RNBoilerplate",
"version": "0.0.5",
"private": true,
"scripts": {
"react-devtools": "react-devtools",
"lint": "node_modules/.bin/eslint app --fix",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"ios": "react-native run-ios",
"android": "react-native run-android",
"build:ios": "react-native run-ios --configuration Release",
"build:android": "react-native run-android --variant=release"
},
"dependencies": {
"immutability-helper": "^2.8.1",
"prop-types": "^15.6.2",
"react": "^16.6.0-alpha.8af6728",
"react-native": "^0.57.4",
"react-native-svg": "^6.5.2",
"react-navigation": "^2.18.2"
},
"rnpm": {
"assets": [
"./app/assets"
]
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^5.0.2",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^21.2.1",
"metro-react-native-babel-preset": "^0.49.0",
"mocha": "^4.1.0",
"react-devtools": "^3.4.2",
"react-test-renderer": "^16.6.0",
"schedule": "^0.4.0"
},
"jest": {
"preset": "react-native",
"testRegex": "./__tests__/[^setup].*.js$",
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base|react-navigation|mobx-react)"
],
"setupFiles": [
"./__tests__/setup.js"
]
}
}