-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "RNBoilerplate",
"version": "0.0.1",
"author": "Hau Vo Phuoc (Kevin) <kevinvovn@gmail.com> (http://github.com/phuochau)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phuochau/react-native-boilerplate-production"
},
"homepage": "https://github.com/phuochau/react-native-boilerplate-production",
"keywords": [
"react-native",
"react-native-boiterplate",
"react-native-boilerplate-production",
"redux",
"starter",
"boilerplate"
],
"private": true,
"scripts": {
"start": "npm run lint & node node_modules/react-native/local-cli/cli.js start",
"ios": "npm run lint & react-native run-ios",
"android": "npm run lint & react-native run-android",
"test": "jest",
"lint": "eslint -c .eslintrc src"
},
"dependencies": {
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-image-picker": "^0.24.1",
"react-native-navigation": "^2.0.0-experimental.155",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-persist": "^4.0.0-beta2",
"tcomb-form-native": "^0.6.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"jest": "18.0.0",
"react-test-renderer": "15.4.1",
"remote-redux-devtools": "^0.5.7"
},
"jest": {
"preset": "react-native"
}
}