-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "RNBoilerplate",
"version": "0.10.0",
"private": true,
"scripts": {
"start": "react-native start",
"ios-open": "open ios/*.xcodeproj",
"ios": "react-native run-ios",
"android": "react-native run-android",
"lint": "eslint src test *.js",
"test": "jest",
"remotedev": "remotedev-debugger --injectserver",
"postinstall": "npm run remotedev && rndebugger-open"
},
"remotedev": {
"hostname": "localhost",
"port": 5678
},
"dependencies": {
"immutable": "^3.7.6",
"lodash": "^4.3.0",
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-native": "^0.51.0",
"react-navigation": "^1.0.0-beta.13",
"react-redux": "^5.0.3",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-remove-console": "^6.8.1",
"babel-polyfill": "^6.26.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.0.0",
"react-native-debugger-open": "^0.3.15",
"react-test-renderer": "16.2.0",
"remote-redux-devtools": "^0.5.4",
"remotedev-rn-debugger": "^0.8.3"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/jest.js",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
}
}