forked from thecodingmachine/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "Boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"prettier-fix": "prettier --write **/*.js",
"prettier-check": "prettier --list-different **/*.js",
"lint-fix": "eslint --fix .",
"lint-check": "eslint .",
"rename": "react-native-rename"
},
"dependencies": {
"apisauce": "^0.15.2",
"immutable": "^3.8.2",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.4",
"react-navigation": "^2.12.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-persist": "^5.9.1",
"redux-persist-transform-immutable": "^5.0.0",
"redux-saga": "^0.16.0",
"reduxsauce": "^0.7.0"
},
"devDependencies": {
"babel-jest": "23.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "23.3.0",
"prettier": "^1.11.1",
"react-native-rename": "^2.2.2",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
}
}